/* ============================================
   SMCET Online Admission Portal Styles
   ============================================ */

/* --- CSS Variables (inherits from main style.css) --- */
:root {
    --adm-primary: #0a2463;
    --adm-primary-light: #1e3a7a;
    --adm-secondary: #e63946;
    --adm-accent: #f4a261;
    --adm-success: #2a9d8f;
    --adm-warning: #e9c46a;
    --adm-bg: #f4f6fb;
    --adm-card: #ffffff;
    --adm-border: #e8ecf1;
    --adm-text: #333;
    --adm-text-muted: #7a8599;
    --adm-radius: 14px;
    --adm-shadow: 0 4px 24px rgba(10, 36, 99, 0.06);
    --adm-shadow-lg: 0 12px 40px rgba(10, 36, 99, 0.10);
}

/* ============================================
   MULTI-STEP WIZARD
   ============================================ */

/* -- Wizard Container -- */
.wizard-container {
    max-width: 900px;
    margin: 0 auto;
}

/* -- Step Progress Indicator -- */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

/* Connector line behind steps */
.step-progress::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--adm-border);
    z-index: 0;
}

.step-progress .progress-fill {
    position: absolute;
    top: 22px;
    left: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--adm-primary), var(--adm-success));
    z-index: 1;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--adm-card);
    border: 3px solid var(--adm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--adm-text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    border-color: var(--adm-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(10, 36, 99, 0.3);
    transform: scale(1.1);
}

.step-item.completed .step-circle {
    background: linear-gradient(135deg, var(--adm-success), #3dc9b0);
    border-color: var(--adm-success);
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.step-item.completed .step-circle::after {
    content: '\f26b'; /* Bootstrap Icons check */
    font-family: 'bootstrap-icons';
    font-size: 1.1rem;
}

.step-item.completed .step-number {
    display: none;
}

.step-label {
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--adm-text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    max-width: 90px;
}

.step-item.active .step-label {
    color: var(--adm-primary);
    font-weight: 700;
}

.step-item.completed .step-label {
    color: var(--adm-success);
}

/* -- Form Steps -- */
.form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -- Step Card -- */
.step-card {
    background: var(--adm-card);
    border-radius: var(--adm-radius);
    padding: 36px;
    box-shadow: var(--adm-shadow);
    border: 1px solid var(--adm-border);
}

.step-card .step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--adm-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-card .step-title i {
    font-size: 1.4rem;
    opacity: 0.8;
}

.step-card .step-subtitle {
    color: var(--adm-text-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

/* -- Form Inputs (admission-specific overrides) -- */
.adm-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 6px;
}

.adm-form .form-label .required {
    color: var(--adm-secondary);
    margin-left: 2px;
}

.adm-form .form-control,
.adm-form .form-select {
    border: 2px solid var(--adm-border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    background: #fafbfd;
}

.adm-form .form-control:focus,
.adm-form .form-select:focus {
    border-color: var(--adm-primary);
    box-shadow: 0 0 0 4px rgba(10, 36, 99, 0.08);
    background: #fff;
}

.adm-form .form-control.is-invalid,
.adm-form .form-select.is-invalid {
    border-color: var(--adm-secondary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.adm-form .invalid-feedback {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--adm-secondary);
    margin-top: 4px;
}

/* -- Photo Upload Preview -- */
.photo-upload-area {
    width: 150px;
    height: 180px;
    border: 2px dashed var(--adm-border);
    border-radius: var(--adm-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    background: #fafbfd;
    position: relative;
}

.photo-upload-area:hover {
    border-color: var(--adm-primary);
    background: rgba(10, 36, 99, 0.02);
}

.photo-upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload-area .upload-placeholder {
    text-align: center;
    color: var(--adm-text-muted);
}

.photo-upload-area .upload-placeholder i {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
    opacity: 0.5;
}

.photo-upload-area .upload-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* -- Document Upload Cards -- */
.doc-upload-card {
    border: 2px dashed var(--adm-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfd;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.doc-upload-card:hover {
    border-color: var(--adm-primary);
    background: rgba(10, 36, 99, 0.02);
}

.doc-upload-card.has-file {
    border-color: var(--adm-success);
    border-style: solid;
    background: rgba(42, 157, 143, 0.03);
}

.doc-upload-card i {
    font-size: 1.5rem;
    color: var(--adm-text-muted);
    margin-bottom: 8px;
}

.doc-upload-card.has-file i {
    color: var(--adm-success);
}

.doc-upload-card .doc-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--adm-success);
    margin-top: 6px;
    word-break: break-all;
}

/* -- Wizard Navigation Buttons -- */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--adm-border);
}

.btn-wizard {
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wizard-prev {
    background: #e8ecf1;
    color: var(--adm-text);
}

.btn-wizard-prev:hover {
    background: #d5dbe5;
}

.btn-wizard-next {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    box-shadow: 0 4px 16px rgba(10, 36, 99, 0.25);
}

.btn-wizard-next:hover {
    box-shadow: 0 6px 24px rgba(10, 36, 99, 0.35);
    transform: translateY(-1px);
}

.btn-wizard-submit {
    background: linear-gradient(135deg, var(--adm-success), #3dc9b0);
    color: #fff;
    box-shadow: 0 4px 16px rgba(42, 157, 143, 0.3);
}

.btn-wizard-submit:hover {
    box-shadow: 0 6px 24px rgba(42, 157, 143, 0.4);
    transform: translateY(-1px);
}

/* -- Review Summary Table -- */
.review-table {
    width: 100%;
    font-size: 0.88rem;
}

.review-table th {
    color: var(--adm-text-muted);
    font-weight: 600;
    padding: 10px 14px;
    width: 35%;
    vertical-align: top;
    background: #fafbfd;
    border-bottom: 1px solid var(--adm-border);
    font-size: 0.82rem;
}

.review-table td {
    padding: 10px 14px;
    font-weight: 500;
    color: var(--adm-text);
    border-bottom: 1px solid var(--adm-border);
}

.review-section-title {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 14px !important;
}

/* -- Success Screen -- */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-screen .success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--adm-success), #3dc9b0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-screen .success-icon i {
    font-size: 2.5rem;
    color: #fff;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-screen h2 {
    color: var(--adm-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.success-screen .app-id-display {
    display: inline-block;
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 16px 0;
    box-shadow: 0 4px 20px rgba(10, 36, 99, 0.25);
}

.success-screen .next-steps {
    text-align: left;
    max-width: 500px;
    margin: 24px auto 0;
    background: #fafbfd;
    border-radius: 12px;
    padding: 20px 24px;
}

.success-screen .next-steps li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--adm-text);
}

/* ============================================
   ADMIT CARD STYLES
   ============================================ */

.admit-card-search {
    max-width: 550px;
    margin: 0 auto;
}

.admit-card-wrapper {
    max-width: 750px;
    margin: 30px auto 0;
    background: var(--adm-card);
    border: 2px solid var(--adm-primary);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--adm-shadow-lg);
}

.admit-card-header {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    padding: 20px 30px;
    text-align: center;
}

.admit-card-header h3 {
    font-weight: 800;
    margin: 0 0 4px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.admit-card-header p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.admit-card-header .admit-title {
    background: var(--adm-secondary);
    display: inline-block;
    padding: 6px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-top: 12px;
    text-transform: uppercase;
}

.admit-card-body {
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: start;
}

.admit-photo {
    width: 130px;
    height: 160px;
    border: 2px solid var(--adm-primary);
    border-radius: 4px;
    object-fit: cover;
}

.admit-details table {
    width: 100%;
    font-size: 0.88rem;
}

.admit-details table th {
    text-align: left;
    padding: 7px 12px 7px 0;
    color: var(--adm-text-muted);
    font-weight: 600;
    width: 40%;
    border-bottom: 1px solid var(--adm-border);
    white-space: nowrap;
    font-size: 0.82rem;
}

.admit-details table td {
    padding: 7px 0;
    font-weight: 600;
    color: var(--adm-text);
    border-bottom: 1px solid var(--adm-border);
}

.admit-card-footer {
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed var(--adm-border);
    background: #fafbfd;
}

.admit-card-footer .qr-code {
    width: 90px;
    height: 90px;
}

.admit-instructions {
    font-size: 0.75rem;
    color: var(--adm-text-muted);
    max-width: 450px;
}

.admit-instructions h6 {
    font-weight: 700;
    color: var(--adm-primary);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.admit-instructions ol {
    padding-left: 16px;
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   FEE CHALLAN STYLES
   ============================================ */

.challan-container {
    max-width: 800px;
    margin: 30px auto 0;
}

.challan-copy {
    background: var(--adm-card);
    border: 2px solid #333;
    padding: 0;
    margin-bottom: 20px;
    page-break-inside: avoid;
    font-size: 0.82rem;
}

.challan-copy-header {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.challan-copy-header h5 {
    margin: 0;
    font-weight: 800;
    font-size: 0.9rem;
}

.challan-copy-header .copy-type {
    background: var(--adm-accent);
    color: #333;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.challan-copy-body {
    padding: 16px 20px;
}

.challan-copy-body table {
    width: 100%;
}

.challan-copy-body table th {
    text-align: left;
    padding: 5px 10px 5px 0;
    color: #666;
    font-weight: 600;
    width: 35%;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
}

.challan-copy-body table td {
    padding: 5px 0;
    font-weight: 600;
    color: var(--adm-text);
    border-bottom: 1px solid #eee;
    font-size: 0.82rem;
}

.challan-amount {
    background: #f0f8ff;
    border: 1px solid var(--adm-primary);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    margin-top: 10px;
}

.challan-amount .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--adm-primary);
}

.challan-amount .label {
    font-size: 0.75rem;
    color: var(--adm-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.challan-bank-details {
    background: #fffbe6;
    border: 1px solid #ffe066;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 0.8rem;
}

.challan-bank-details h6 {
    font-weight: 700;
    color: var(--adm-primary);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.challan-signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    font-size: 0.78rem;
    color: #666;
    font-weight: 600;
}

/* ============================================
   ENQUIRY FORM
   ============================================ */

.enquiry-container {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PORTAL NAVIGATION BAR (within admission section)
   ============================================ */

.adm-portal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.adm-portal-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--adm-primary);
    background: var(--adm-card);
    border: 2px solid var(--adm-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.adm-portal-nav a:hover,
.adm-portal-nav a.active {
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    border-color: var(--adm-primary);
    box-shadow: 0 4px 16px rgba(10, 36, 99, 0.2);
    transform: translateY(-1px);
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.loading-spinner .spinner-border {
    width: 50px;
    height: 50px;
    border-width: 4px;
    color: var(--adm-primary);
}

.loading-spinner p {
    margin-top: 14px;
    font-weight: 600;
    color: var(--adm-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .step-progress {
        margin-bottom: 28px;
    }

    .step-progress::before {
        left: 20px;
        right: 20px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.62rem;
        max-width: 60px;
    }

    .step-card {
        padding: 20px;
    }

    .step-card .step-title {
        font-size: 1.1rem;
    }

    .wizard-nav {
        flex-direction: column;
        gap: 12px;
    }

    .btn-wizard {
        width: 100%;
        justify-content: center;
    }

    /* Admit card mobile */
    .admit-card-body {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .admit-photo {
        margin: 0 auto;
    }

    .admit-card-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Challan mobile */
    .challan-signatures {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .photo-upload-area {
        width: 120px;
        height: 150px;
    }

    /* Portal navigation on mobile */
    .adm-portal-nav {
        gap: 10px;
    }
    
    .adm-portal-nav a {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
        padding: 12px 10px;
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .step-progress {
        margin-bottom: 20px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .step-label {
        display: none;
    }

    .success-screen .app-id-display {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .admit-card-header h3 {
        font-size: 0.85rem;
    }

    /* Full width buttons on small phones */
    .adm-portal-nav a {
        flex: 1 1 100%;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    /* Hide everything except the printable content */
    .top-bar, .navbar, .notice-bar, .sticky-top-wrapper,
    .page-banner, .site-footer, .back-to-top,
    .no-print, .adm-portal-nav, .btn-print,
    .wizard-nav, .step-progress {
        display: none !important;
    }

    body {
        background: #fff !important;
        margin: 0;
        padding: 0;
        font-size: 11pt;
    }

    .section-padding {
        padding: 0 !important;
    }

    /* Admit Card print specific */
    .admit-card-wrapper {
        border: 2px solid #000;
        box-shadow: none;
        margin: 0;
        max-width: 100%;
    }

    .admit-card-header {
        background: #0a2463 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .admit-card-header .admit-title {
        background: #e63946 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Challan print specific */
    .challan-copy {
        border: 2px solid #000;
        margin-bottom: 10px;
        page-break-inside: avoid;
    }

    .challan-copy-header {
        background: #0a2463 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .challan-amount {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .challan-bank-details {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Ensure all three challan copies fit on one page */
    .challan-container {
        max-width: 100%;
    }

    .challan-copy {
        font-size: 9pt;
    }

    a[href]:after {
        content: none !important;
    }
}

/* ============================================
   MULTI-SELECT CHECKBOX DROPDOWN
   ============================================ */

.multi-select-dropdown {
    position: relative;
}

.multi-select-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    min-height: 44px;
    flex-wrap: wrap;
    gap: 4px;
    padding-right: 32px !important;
    user-select: none;
}

.multi-select-toggle::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: solid var(--adm-text-muted);
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.multi-select-toggle.open::after {
    transform: translateY(-40%) rotate(-135deg);
}

.multi-select-placeholder {
    color: var(--adm-text-muted);
    font-size: 0.9rem;
}

.multi-select-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--adm-primary), var(--adm-primary-light));
    color: #fff;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    gap: 4px;
    line-height: 1.6;
}

.multi-select-tag .tag-remove {
    cursor: pointer;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 2px;
}

.multi-select-tag .tag-remove:hover {
    opacity: 1;
}

.multi-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid var(--adm-primary);
    border-radius: 10px;
    margin-top: 4px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(10, 36, 99, 0.15);
    animation: dropdownFade 0.2s ease;
    padding: 6px 0;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.multi-select-group-label {
    padding: 8px 14px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--adm-primary);
    opacity: 0.7;
}

.multi-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--adm-text);
    transition: background 0.15s ease;
    margin: 0;
}

.multi-select-option:hover {
    background: rgba(10, 36, 99, 0.04);
}

.multi-select-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--adm-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.multi-select-divider {
    height: 1px;
    background: var(--adm-border);
    margin: 4px 10px;
}

.multi-select-toggle.is-invalid {
    border-color: var(--adm-secondary) !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08) !important;
}
