:root {
    /* Primary Palette - Deep Sea & Indigo */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --navy: #0f172a;
    --navy-light: #1e293b;

    /* Accent Palette - Gold & Amber */
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-soft: #fef3c7;

    /* Neutral Palette - Whites & Grays */
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow:
        0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-lg:
        0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-lg: 1rem;
    --radius-md: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Layout */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
}

.sidebar-nav {
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.nav-item.active {
    background-color: var(--accent);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.main-content {
    margin-left: 260px;
    padding: 2.5rem;
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Typography & Headers */
h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.grid-1-1-1-5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2rem;
}

.grid-1-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.strategy-insight-grid,
.strategy-report-list {
    display: grid;
    gap: 1rem;
}

.strategy-insight-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bsc-perspective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.bsc-perspective-card {
    border-top: 4px solid var(--primary);
    min-height: 280px;
}

.bsc-perspective-card.financial {
    border-top-color: #047857;
}

.bsc-perspective-card.customer {
    border-top-color: #2563eb;
}

.bsc-perspective-card.internal_process {
    border-top-color: #7c3aed;
}

.bsc-perspective-card.learning_growth {
    border-top-color: #d97706;
}

.bsc-objective-item,
.strategy-report-item {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
}

.bsc-objective-title {
    font-weight: 800;
    color: var(--navy);
}

.bsc-objective-meta {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.35rem;
}

.rag-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
}

.rag-green {
    background: var(--success);
}

.rag-amber {
    background: var(--warning);
}

.rag-red {
    background: var(--danger);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

#skills-matrix-table {
    min-width: 900px;
}

th {
    text-align: left;
    padding: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1;
}

td {
    padding: 1.125rem 1rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
    vertical-align: middle;
}

tbody tr:hover {
    background: var(--bg-light);
}

tr:last-child td {
    border-bottom: none;
}

#skills-matrix-container {
    overflow-x: auto;
}

.table-responsive {
    overflow-x: auto;
}

.meetings-toolbar {
    margin-bottom: 1.5rem;
}

.meetings-toolbar-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.meeting-row-title {
    font-weight: 700;
    color: var(--navy);
}

.meeting-row-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.meeting-inline-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.meeting-detail-hero {
    margin-bottom: 1.5rem;
}

.meeting-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.meeting-meta-item {
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.meeting-meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.meeting-meta-value {
    font-weight: 700;
    color: var(--navy);
}

.meeting-attendance-list,
.meeting-board-pack-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meeting-person-card,
.meeting-doc-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
}

.meeting-person-meta,
.meeting-doc-meta {
    min-width: 0;
}

.meeting-person-name,
.meeting-doc-title {
    font-weight: 700;
    color: var(--navy);
}

.meeting-person-role,
.meeting-doc-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

#skills-matrix-table th,
#skills-matrix-table td {
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.badge.scheduled {
    background: #dbeafe;
    color: #1e40af;
}
.badge.completed {
    background: #dcfce7;
    color: #166534;
}
.badge.draft {
    background: #f1f5f9;
    color: #475569;
}
.badge.pending {
    background: #fef9c3;
    color: #854d0e;
}

/* Modals */
.modal {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(8px);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
/* --- Templates UI --- */
.doc-tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

#templates-list .card {
    transition: all 0.3s ease;
}

#templates-list .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.t-item-category {
    font-family: inherit;
    color: var(--navy);
    font-weight: 600;
}

/* Rating Buttons */
.rating-scale {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-option {
    text-align: center;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    font-weight: 600;
    position: relative;
}

.rating-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option input[type="radio"]:checked + .rating-label {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.rating-option input[type="radio"]:checked + .rating-label::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid white;
}

.rating-label {
    display: block;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

/* Tab Navigation */
.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0.5rem 0.5rem 0 0;
}

.tab-btn:hover {
    color: var(--text-main);
    background: var(--bg-light);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--primary-light);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Assessment Form Enhancements */
.assessment-form {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.assessment-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.assessment-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.assessment-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Responsive & Mobile Fixes */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    backdrop-filter: blur(2px);
}

@media (max-width: 1200px) {
    .grid-2-1 {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ===== Digital Boardroom Split Layout ===== */

/*
  Full-screen grid: topbar (auto) + split (1fr)
  Fixed so it sits precisely in the right area of the viewport
*/
#boardroom-view {
    position: fixed;
    top: 0;
    left: 260px; /* sidebar width */
    right: 0;
    bottom: 0;
    z-index: 90; /* below sidebar z-index:100 */
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    background: #0f172a;
}

.boardroom-topbar {
    background: var(--navy);
    color: white;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/*
  The split row fills ALL remaining height under the topbar.
  Left = video/jitsi  (takes all spare space)
  Right = tools panel (fixed 380px)
*/
.boardroom-split {
    display: grid;
    /* video | handle | tools */
    grid-template-columns: 1fr 24px 420px;
    grid-template-rows: 1fr;
    overflow: hidden;
    min-height: 0;
    transition: grid-template-columns 0.3s ease;
}

/* When tools panel is collapsed, shrink tools column to 0 */
.boardroom-split.tools-collapsed {
    grid-template-columns: 1fr 24px 0px;
}

/* Collapse / expand handle strip */
.boardroom-tools-toggle {
    background: #1e293b;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    padding: 0;
    transition:
        background 0.2s,
        color 0.2s;
    z-index: 5;
}

.boardroom-tools-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ---- Left: Jitsi video panel ---- */
.boardroom-video-panel {
    background: #0f172a;
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
}

.boardroom-video-panel.hidden {
    display: none;
}

/* The div that JitsiMeetExternalAPI injects into */
#boardroom-jitsi-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Jitsi's own iframe must fill the container 100% */
#boardroom-jitsi-container > iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    min-width: 0;
    min-height: 0;
}

.boardroom-no-video {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    gap: 1.25rem;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
}

/* ---- Right: Tools panel ---- */
.boardroom-tools-panel {
    background: white;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}

.boardroom-tabs.tabs {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.boardroom-tabs .tab-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.boardroom-tab-body {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem;
    min-height: 0;
}

/* ---- Boardroom-specific content overrides ---- */

/* Live Minutes: stack agenda nav + notes vertically instead of side by side */
#boardroom-tools-panel #br-tab-live-minutes > div {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Agenda nav becomes a compact horizontal scrollable strip */
#boardroom-tools-panel .agenda-nav-panel {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding-right: 0 !important;
    padding-bottom: 0.75rem !important;
    max-height: 180px;
    overflow-y: auto;
}

/* Notes content area takes remaining space */
#boardroom-tools-panel .notes-content-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

/* Board Pack grid adapts to panel width */
#boardroom-tools-panel #br-board-pack-list {
    grid-template-columns: 1fr !important;
}

/* General: all inner cards should not overflow the panel */
#boardroom-tools-panel .card {
    min-width: 0;
    word-break: break-word;
}

/* Compact note form inside boardroom */
#boardroom-tools-panel #br-note-form-container {
    padding: 0.75rem !important;
}

/* Notes feed compact */
#boardroom-tools-panel #br-notes-feed {
    max-height: 300px;
}

@media (max-width: 1100px) {
    .boardroom-split {
        grid-template-columns: 1fr 24px 340px;
    }
    .boardroom-split.tools-collapsed {
        grid-template-columns: 1fr 24px 0px;
    }
}

@media (max-width: 768px) {
    #boardroom-view {
        left: 0;
    }
    .boardroom-split {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh 24px 1fr;
    }
    .boardroom-tools-toggle {
        width: 100%;
        height: 24px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        padding: 1.5rem;
    }

    .grid-2-1,
    .grid-1-1-1-5 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .meetings-toolbar-grid {
        grid-template-columns: 1fr;
    }

    .meeting-meta-grid {
        grid-template-columns: 1fr;
    }

    .meeting-person-card,
    .meeting-doc-card {
        flex-direction: column;
        align-items: flex-start;
    }

    #in-app-meeting-modal .card > div:last-child {
        grid-template-columns: 1fr !important;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.active {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header .card {
        width: 100%;
        justify-content: space-between;
    }

    .grid-1-1,
    .grid-1-1-1 {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .rating-scale {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .rating-option {
        padding: 0.75rem;
    }

    .modal .card {
        padding: 1.5rem;
        margin: 1rem;
    }

    #meeting-modal .card > form > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Fix tables on mobile */
    .card {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}
/* Skeleton Loading */
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
    border-radius: 0.5rem;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.skeleton-title {
    height: 1.5rem;
    margin-bottom: 1rem;
    width: 60%;
}

.skeleton-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
}

/* Toastify Custom Styles */
.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 350px;
}

.toastify.success {
    background: linear-gradient(to right, #10b981, #059669);
}

.toastify.error {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.toastify.info {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

/* SweetAlert2 Overrides to match theme */
.swal2-popup {
    border-radius: 1.5rem !important;
    font-family: "Inter", sans-serif !important;
    padding: 2rem !important;
}

.swal2-title {
    font-weight: 800 !important;
    color: var(--navy) !important;
}

.swal2-confirm {
    background-color: var(--primary) !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
}

.swal2-cancel {
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
}
