html, body {
    min-height: 100%;
}

body {
    background-color: #f4f6f9;
}

.main-wrapper {
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    min-height: 100vh;
    background: #fff;
    border-right: 1px solid #dee2e6;
    transition: width 0.2s ease, margin 0.2s ease;
}

.sidebar.collapsed {
    width: 0;
    overflow: hidden;
    border-right: 0;
}

.main-content {
    min-width: 0;
    background: #f4f6f9;
    overflow-x: hidden;
}

.body-content {
    overflow: visible;
}

.panel-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.menu-section {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c757d;
}

.menu-link {
    display: block;
    padding: 0.45rem 0.5rem;
    color: #212529;
    text-decoration: none;
    border-radius: 0.375rem;
}

.menu-link:hover {
    background: #eef3ff;
    color: #0d6efd;
}

.panel-shell,
.stat-card {
    background: #fff;
    border-radius: 0.5rem;
}

.panel-shell {
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

#loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid #dee2e6;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert-bar {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, calc(100% - 2rem));
    z-index: 2100;
    transition: top 0.25s ease;
    pointer-events: none;
}

.alert-bar.show {
    top: 16px;
    pointer-events: auto;
}

.alert-bar #spMessage {
    border-radius: 0.5rem;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    margin: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    font-weight: 500;
}

.alert-bar #spMessage.error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.alert-bar #spMessage.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.btn-close-alert {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
}

.btn-close-alert:hover {
    opacity: 1;
}

.login-body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #7c3aed 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.login-bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.login-bg-shape-1 {
    width: 420px;
    height: 420px;
    background: #60a5fa;
    top: -120px;
    right: -80px;
}

.login-bg-shape-2 {
    width: 360px;
    height: 360px;
    background: #f59e0b;
    bottom: -100px;
    left: -80px;
}

.login-bg-shape-3 {
    width: 280px;
    height: 280px;
    background: #34d399;
    top: 40%;
    left: 30%;
}

.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.login-container {
    width: 100%;
    max-width: 920px;
}

.login-card {
    width: 100%;
}

.login-card-inner {
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    min-height: 520px;
}

.login-brand-panel {
    flex: 1 1 42%;
    background: linear-gradient(160deg, #2563eb 0%, #4f46e5 55%, #7c3aed 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login-brand-panel::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -60px;
    right: -60px;
}

.login-brand-panel::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -40px;
    left: -40px;
}

.login-brand-content {
    position: relative;
    z-index: 1;
}

.login-brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}

.login-brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.login-brand-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    max-width: 280px;
}

.login-brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-brand-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
    opacity: 0.95;
}

.login-brand-features li i {
    color: #fde68a;
    font-size: 0.9rem;
}

.login-form-panel {
    flex: 1 1 58%;
    padding: 2.5rem 2.25rem;
    display: flex;
    align-items: center;
}

.login-form-content {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.login-form-header {
    margin-bottom: 1.75rem;
}

.login-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.login-form-subtitle {
    color: #64748b;
    font-size: 0.925rem;
    margin: 0;
}

.login-validation {
    border-radius: 0.625rem;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.login-field {
    margin-bottom: 1.15rem;
}

.login-field .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}

.login-input-wrap {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

.login-input {
    padding: 0.7rem 0.875rem 0.7rem 2.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #f8fafc;
}

.login-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: #fff;
}

.login-options {
    margin: 1.25rem 0 1.5rem;
}

.login-options .form-check-label {
    font-size: 0.875rem;
    color: #475569;
}

.login-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 0;
    border-radius: 0.625rem;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-submit-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
}

.login-submit-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.login-public-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.65rem;
    border-color: #e9ecef !important;
}

.login-public-btn {
    flex: 1 1 0;
    min-width: 8.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.login-public-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.login-public-btn-label {
    text-align: left;
}

.login-public-btn-schedule {
    color: #3730a3;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
    box-shadow: 0 1px 2px rgba(79, 70, 229, 0.08);
}

.login-public-btn-schedule .login-public-btn-icon {
    color: #4f46e5;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.12);
}

.login-public-btn-results {
    color: #92400e;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
    box-shadow: 0 1px 2px rgba(245, 158, 11, 0.1);
}

.login-public-btn-results .login-public-btn-icon {
    color: #d97706;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.15);
}

.login-public-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.login-public-btn-schedule:hover {
    color: #312e81;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-color: #a5b4fc;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.18);
}

.login-public-btn-results:hover {
    color: #78350f;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fcd34d;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.login-public-btn:active {
    transform: translateY(0);
}

.public-results-refresh-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.public-schedule-venue {
    color: #475569;
}

.public-schedule-map-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.public-schedule-map-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.public-results-grid-wrap {
    border: 1px solid #dbe4f0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.public-results-grid {
    margin-bottom: 0;
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: #f8fafc;
}

.public-results-grid thead th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #475569;
    border-bottom: 2px solid #cbd5e1;
    padding: 0.65rem 0.85rem;
    white-space: nowrap;
}

.public-results-grid td {
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle;
}

.public-results-grid tbody tr:last-child td {
    border-bottom: none;
}

.public-results-group-row td {
    background: linear-gradient(90deg, #eef2ff, #f8fafc);
    border-top: 1px solid #dbe4f0;
    border-bottom: 1px solid #dbe4f0;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
}

.public-results-group-row:first-child td {
    border-top: none;
}

.public-results-group-category {
    font-weight: 700;
    color: #312e81;
}

.public-results-group-separator {
    color: #94a3b8;
    font-weight: 600;
    margin: 0 0.2rem;
}

.public-results-group-event {
    font-weight: 600;
    color: #334155;
}

.public-results-col-pos {
    width: 3.5rem;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    color: #334155;
}

.public-results-data-row:hover td {
    background: #f8fafc;
}

.public-results-row-dq td {
    color: #94a3b8;
}

.login-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
}

.login-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.company-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.company-footer-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.15s ease;
}

.company-footer-link:hover {
    opacity: 1;
}

.company-footer-logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: 28px;
}

.company-footer-logo-light {
    display: none;
}

.login-footer .company-footer-logo-light {
    display: block;
}

.login-footer .company-footer-logo-dark {
    display: none;
}

.app-footer .company-footer-logo-light {
    display: none;
}

.app-footer .company-footer-logo-dark {
    display: block;
}

.company-footer-copy a {
    color: inherit;
    text-decoration: none;
}

.company-footer-copy a:hover {
    text-decoration: underline;
}

.login-footer .company-footer-copy {
    color: rgba(255, 255, 255, 0.75);
}

.login-footer .company-footer-copy a {
    color: rgba(255, 255, 255, 0.9);
}

.app-footer .company-footer-copy {
    color: #64748b;
}

.app-footer .company-footer-copy a {
    color: #475569;
}

@media (max-width: 767.98px) {
    .login-card-inner {
        flex-direction: column;
        min-height: auto;
    }

    .login-brand-panel {
        padding: 2rem 1.5rem;
    }

    .login-brand-subtitle {
        max-width: none;
    }

    .login-brand-features {
        display: none;
    }

    .login-form-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .main-content {
        width: 100%;
    }
}

.sidebar-brand {
    color: #4f46e5;
}

.menu-link.active {
    background: linear-gradient(90deg, #eef2ff, #fdf4ff);
    color: #4f46e5;
    font-weight: 600;
}

.summary-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 0.75rem;
    color: #fff;
    min-height: 110px;
}

.summary-card .summary-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.summary-card .summary-label {
    font-weight: 700;
    font-size: 1.05rem;
}

.summary-card .summary-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.card-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.card-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.card-green { background: linear-gradient(135deg, #059669, #10b981); }

.row-lines {
    max-height: 420px;
    overflow-y: auto;
}

.row-line, .item-row {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
}

.row-line:hover, .item-row:hover {
    background: #f8f9fa;
}

.row-line.select, .item-row.select {
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 600;
}

.rights-panel {
    max-height: 260px;
    overflow-y: auto;
}

.top-bar {
    background: linear-gradient(90deg, #ffffff, #f8fafc) !important;
}

.meet-page {
    overflow: visible;
}

.meet-toolbar {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.meet-search-wrap {
    position: relative;
    z-index: 30;
    min-width: 0;
}

.meet-search-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.meet-toolbar-title {
    min-width: 0;
}

.meet-form .row > [class*="col-"] {
    min-width: 0;
}

.meet-form .form-label {
    margin-bottom: 0.35rem;
}

.meet-form .form-control,
.meet-form .form-select {
    width: 100%;
    max-width: 100%;
}

.meet-section {
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    overflow: visible;
}

.meet-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef2ff;
}

.meet-section-header i {
    font-size: 1.1rem;
}

.meet-active-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.meet-active-check .form-check-input {
    margin-top: 0;
    flex-shrink: 0;
}

.meet-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.meet-search-wrap .select2-container {
    display: block;
    width: 100% !important;
}

.meet-search-wrap .select2-container--bootstrap-5 .select2-selection {
    min-height: 38px;
    border-color: #cbd5e1;
}

.meet-search-wrap .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.meet-search-wrap .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

.select2-container--bootstrap-5 .select2-dropdown {
    z-index: 1060;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.meet-form .form-control[readonly] {
    background-color: #f8fafc;
    color: #64748b;
    cursor: default;
}

.meet-tabs .nav-link {
    font-weight: 600;
    color: #64748b;
}

.meet-tabs .nav-link.active {
    color: #4f46e5;
}

.meet-tab-content {
    background: #fff;
}

.meet-events-list {
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
}

.registration-events-list {
    overflow: visible;
    max-height: none;
    background: #fff;
}

.profile-photo-preview {
    width: 105px;
    height: 135px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    background: #f8fafc;
}

.profile-photo-preview-sm {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    background: #f8fafc;
}

.profile-crop-wrap {
    max-height: 420px;
    overflow: hidden;
    background: #f8fafc;
}

.profile-crop-wrap img {
    display: block;
    max-width: 100%;
}

.modal-applicant-dialog {
    max-width: min(960px, 94vw);
}

.modal-profile-crop-dialog {
    max-width: min(720px, 94vw);
}

@media (min-width: 992px) {
    .modal-applicant-dialog .profile-photo-preview {
        width: 120px;
        height: 154px;
    }
}

.verification-profile-photo {
    width: 105px;
    height: 135px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    background: #f8fafc;
}

.meet-event-row {
    padding: 0.75rem 1rem;
}

.sidebar-brand {
    color: #4f46e5;
}

.menu-link.active {
    background: linear-gradient(90deg, #eef2ff, #fdf4ff);
    color: #4f46e5;
    font-weight: 600;
}

.summary-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 0.75rem;
    color: #fff;
    min-height: 110px;
}

.summary-card .summary-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.summary-card .summary-label {
    font-weight: 700;
    font-size: 1.05rem;
}

.summary-card .summary-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.card-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.card-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.card-green { background: linear-gradient(135deg, #059669, #10b981); }

.row-lines {
    max-height: 420px;
    overflow-y: auto;
}

.row-line, .item-row {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
}

.row-line:hover, .item-row:hover {
    background: #f8f9fa;
}

.row-line.select, .item-row.select {
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 600;
}

.rights-panel {
    max-height: 260px;
    overflow-y: auto;
}

.top-bar {
    background: linear-gradient(90deg, #ffffff, #f8fafc) !important;
}

.meet-page {
    overflow: visible;
}

.meet-toolbar {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.meet-search-wrap {
    position: relative;
    z-index: 30;
    min-width: 0;
}

.meet-search-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.meet-toolbar-title {
    min-width: 0;
}

.meet-form .row > [class*="col-"] {
    min-width: 0;
}

.meet-form .form-label {
    margin-bottom: 0.35rem;
}

.meet-form .form-control,
.meet-form .form-select {
    width: 100%;
    max-width: 100%;
}

.meet-section {
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    overflow: visible;
}

.meet-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef2ff;
}

.meet-section-header i {
    font-size: 1.1rem;
}

.meet-active-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.meet-active-check .form-check-input {
    margin-top: 0;
    flex-shrink: 0;
}

.meet-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.meet-search-wrap .select2-container {
    display: block;
    width: 100% !important;
}

.meet-search-wrap .select2-container--bootstrap-5 .select2-selection {
    min-height: 38px;
    border-color: #cbd5e1;
}

.meet-search-wrap .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.meet-search-wrap .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

.select2-container--bootstrap-5 .select2-dropdown {
    z-index: 1060;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.meet-form .form-control[readonly] {
    background-color: #f8fafc;
    color: #64748b;
    cursor: default;
}

.meet-tabs .nav-link {
    font-weight: 600;
    color: #64748b;
}

.meet-tabs .nav-link.active {
    color: #4f46e5;
}

.meet-tab-content {
    background: #fff;
}

.meet-events-list {
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
}

.meet-event-row {
    padding: 0.75rem 1rem;
}

.confirm-dialog-content {
    border-radius: 0.75rem;
}

.confirm-dialog-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
