.toastify {
    display: flex;
    gap: 0.5rem;
    box-shadow: none;
    filter: drop-shadow(0px 1px 13px rgba(0, 0, 0, 0.1));

    .toast-close {
        color: inherit;
        filter: brightness(0.1);
    }

    .undo-toast {
        display: flex;
        align-items: center;
        gap: 1rem;

        .undo-toast-undo-btn {
            padding: 0.15rem 0.5rem;
            border: 2px solid #0e6630;
            background-color: #0e6630;
            border-radius: 99rem;
            cursor: pointer;
            color: #dbfce7;
            transition: all 0.1s ease-in-out;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            .material-icons-outlined {
                color: inherit;
                font-size: 0.85rem;
                transform: rotate(90deg);
            }
            &:hover {
                color: #0e6630;
                background-color: #d9f2e2;
            }
        }
    }
}
