/* ==========================================================================
   Atura Care Premium Design System & Stylesheet
   ========================================================================== */

:root {
    /* Color Palette (Light Blue Gradient Theme) */
    --bg-primary: #EAF2FF;
    --bg-secondary: #ffffff;
    --accent-color: #1171ef;
    --accent-glow: rgba(17, 113, 239, 0.15);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    --gradient-start: #303f9f;
    --gradient-end: #1171ef;
    
    /* Glassmorphism settings */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);

    /* Bootstrap variables overrides */
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #303f9f;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}

body {
    background: linear-gradient(180deg, #B4DBFF 0%, #EAF2FF 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Glassmorphism Card Style */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Linear Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient-primary {
    background: linear-gradient(104.04deg, #1171ef 0%, #0a4189 100%);
    color: white !important;
    border: none;
    transition: opacity 0.2s ease, transform 0.1s ease;
}
.btn-gradient-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-outline-light-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: background 0.2s ease;
}
.btn-outline-light-glass:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
}

/* Navbar Premium Glass */
.bg-dark-glass {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

/* Input Fields Glass styling */
.input-group-glass .form-control {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.input-group-glass .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.input-group-glass .input-group-text {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

/* Hero Background Glow */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-logo {
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.spinning-slow {
    animation: spin 8s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-gradient-primary-soft {
    background: rgba(59, 130, 246, 0.15);
}
.bg-gradient-success-soft {
    background: rgba(16, 185, 129, 0.15);
}
.bg-gradient-info-soft {
    background: rgba(6, 182, 212, 0.15);
}

/* Toast glass styling */
.toast.bg-success-glass { background: rgba(16, 185, 129, 0.85); backdrop-filter: blur(10px); }
.toast.bg-danger-glass { background: rgba(239, 68, 68, 0.85); backdrop-filter: blur(10px); }
.toast.bg-warning-glass { background: rgba(245, 158, 11, 0.85); backdrop-filter: blur(10px); }
.toast.bg-info-glass { background: rgba(6, 182, 212, 0.85); backdrop-filter: blur(10px); }

/* Table styling override */
.table-dark-glass {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-primary);
    --bs-table-border-color: var(--glass-border);
}
.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

/* Layout Utilities */
.min-vh-75 { min-height: 75vh; }
.tracking-wide { letter-spacing: 1px; }

/* Auth forms specific */
.bg-auth-page {
    background: linear-gradient(180deg, #B4DBFF 0%, #EAF2FF 100%);
    background-attachment: fixed;
}
.alert-danger-glass {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

/* User Defined Custom Gradients */
.blue-gradiant, .blue-gradient {
    background: linear-gradient(143.2deg, #11cdef 0%, #1171ef 100%) !important;
}
.red-gradient {
    background: linear-gradient(143.2deg, #f56036 0%, #f5365c 100%) !important;
}
.green-gradient {
    background: linear-gradient(143.2deg, #3bc867 0%, #2999ad 100%) !important;
}
.orange-gradient {
    background: linear-gradient(143.2deg, #fbb140 0%, rgba(251, 99, 64, 0.92549) 100%) !important;
}

/* ==========================================================================
   Responsive Split Login Screen Styles (Matching Screenshot Theme)
   ========================================================================== */
.auth-split-row {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    /*background-color: #e8f4fd;*/
}

.auth-banner-panel {
    /*background-color: #e8f4fd;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
}

.auth-form-panel {
    /*background-color: #e8f4fd;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-banner-carousel {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.auth-banner-img-container {
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.auth-banner-img-container svg,
.auth-banner-img-container img {
    max-height: 100%;
    width: auto;
}

.auth-banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 4.2rem; /* Keep text heights consistent for carousel */
}

/* Pagination indicator (dashes style) */
.auth-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.auth-slider-indicator-dash {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.auth-slider-indicator-dash.active {
    background-color: #1171ef;
}

/* Custom inputs styling matching the screenshot */
.auth-card-wrapper {
    max-width: 420px;
    width: 100%;
}

.auth-light-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: left;
}

.auth-light-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.auth-phone-input-group {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.auth-phone-input-group:focus-within {
    border-color: #1171ef;
    box-shadow: 0 0 0 3px rgba(17, 113, 239, 0.15);
}

.auth-country-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    padding-right: 12px;
    border-right: 1px solid #e2e8f0;
}

.auth-country-btn:focus {
    outline: none;
}

.auth-phone-number-field {
    border: none;
    background: transparent;
    padding: 0 12px;
    flex-grow: 1;
    font-size: 1.05rem;
    color: #2d3748;
    font-weight: 500;
}

.auth-phone-number-field::placeholder {
    color: #a0aec0;
}

.auth-phone-number-field:focus {
    outline: none;
}

.auth-country-dropdown {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.auth-light-hint {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.75rem;
}

.auth-light-btn-continue {
    background: #1171ef;
    color: #ffffff !important;
    border: none;
    border-radius: 16px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(17, 113, 239, 0.25);
}

.auth-light-btn-continue:hover {
    background: #0f62d1;
    transform: translateY(-1px);
}

.auth-light-btn-continue:active {
    transform: translateY(0);
}

/* Verification Code / OTP Inputs */
.auth-otp-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.auth-otp-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    color: #2d3748;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-otp-input:focus {
    border-color: #1171ef;
    box-shadow: 0 0 0 3px rgba(17, 113, 239, 0.15);
    outline: none;
}

/* Responsive Grid Overrides for Split Layout */
@media (min-width: 992px) {
    .auth-banner-panel {
        flex: 0 0 70% !important;
        max-width: 70% !important;
        min-height: 100vh;
    }
    .auth-form-panel {
        flex: 0 0 30% !important;
        max-width: 30% !important;
        min-height: 100vh;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .auth-banner-panel {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        min-height: 100vh;
    }
    .auth-form-panel {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        min-height: 100vh;
    }
}

@media (max-width: 767.98px) {
    .auth-banner-panel {
        width: 100% !important;
        min-height: 45vh;
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
    .auth-form-panel {
        width: 100% !important;
        min-height: auto;
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    .auth-banner-img-container {
        height: 220px;
        margin-bottom: 1rem;
    }
    .auth-banner-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        min-height: auto;
    }
}

/* Country Selection Dropdown Customizations */
.auth-country-btn-container {
    gap: 6px;
}

.auth-country-dropdown-menu {
    max-height: 280px;
    overflow-y: auto;
    width: 280px;
    padding: 0;
}

.auth-country-search-container {
    z-index: 10;
}

.auth-country-option-flag {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    object-fit: cover;
}

.auth-country-option-flag-selected {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 1px;
}

.auth-country-option-name {
    font-size: 0.875rem;
    max-width: 170px;
}

.auth-country-option-code {
    font-size: 0.75rem;
}

/* Layout and Component Custom Sizing & Stacking */
.layout-navbar-logo {
    width: 36px;
    height: 36px;
}

.spinner-loading-custom {
    width: 3.5rem;
    height: 3.5rem;
}

.toast-container-custom {
    z-index: 1090;
}

.auth-register-card {
    max-width: 480px;
    width: 100%;
}

.auth-register-logo {
    width: 70px;
    height: 70px;
}

/* Light Theme Helper Color Overrides */
body .text-white-50 {
    color: rgba(15, 23, 42, 0.6) !important;
}

body .text-white {
    color: #ffffff !important;
}

body .text-muted {
    color: #475569 !important;
}

/* ==========================================================================
   Authenticated Dashboard Layout (Sidebar & Header & Footer)
   ========================================================================== */

.app-layout-authenticated {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Sidebar Styling */
.app-sidebar {
    width: 100px;
    min-width: 100px;
    background: #ffffff !important;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 2px 0 10px rgba(15, 23, 42, 0.02);
}

.sidebar-brand-emblem {
    /* margin-top: 1.5rem; */
}

.sidebar-logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* background: #303f9f; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(48, 63, 159, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo-circle img {
     width: 27px;
    height: 27px;
}

.sidebar-logo-circle i {
    font-size: 26px;
    color: #ffffff;
}

.sidebar-nav {
    /* margin-top: 1.5rem; */
}

.nav-link-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 11px;
    font-weight: 500;
    border-radius: 12px;
    width: 100%;
}

.nav-link-sidebar i {
    font-size: 22px;
    color: #475569;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link-sidebar:hover {
    background-color: rgba(17, 113, 239, 0.08);
    color: #1171ef;
}

.nav-link-sidebar:hover i {
    color: #1171ef;
    transform: translateY(-2px);
}

.nav-link-sidebar.active {
    background-color: #EAF2FF !important;
    color: #1171ef !important;
}

.nav-link-sidebar.active i {
    color: #1171ef !important;
}

.sidebar-version-bar {
    background-color: #1171ef;
    font-size: 11px;
    color: #ffffff !important;
    width: 100%;
    padding: 0.5rem 0;
    font-weight: 600;
    margin-top: auto;
}

/* Right Content Wrapper */
.content-wrapper-authenticated {
    background: linear-gradient(180deg, #B4DBFF 0%, #EAF2FF 100%);
    background-attachment: fixed;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Header Bar Styling */
.app-header-authenticated {
    height: 70px;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 1010;
    position: sticky;
    top: 0;
}

.profile-photo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1171ef;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(17, 113, 239, 0.25);
    border: 2px solid #ffffff;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer Styling */
.app-footer-authenticated {
    background: #ffffff !important;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #64748b !important;
}

/* Mobile Sidebar Toggle Support */
@media (max-width: 767.98px) {
    .app-sidebar {
        position: fixed;
        left: -100px;
        top: 0;
        bottom: 0;
        height: 100vh;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 15px rgba(15, 23, 42, 0.1);
    }
    .show-sidebar .app-sidebar {
        left: 0;
    }
}

/* ==========================================================================
   Quick Action Cards & Prescription Card Layout
   ========================================================================== */

.quick-action-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
    position: relative;
}
.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.qa-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 12px;
}
.qa-content {
    flex-grow: 1;
}
.qa-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}
.qa-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.qa-arrow {
    color: #64748b;
    font-size: 14px;
}

/* Colors for Quick Actions */
.qa-appt {
    background-color: #FAF5FF !important;
    border: 1px solid rgba(155, 81, 224, 0.15) !important;
}
.qa-appt .qa-icon-wrapper {
    background-color: #F3E8FF;
    color: #9B51E0;
}
.qa-appt .qa-sub {
    color: #9B51E0 !important;
}

.qa-call {
    background-color: #EBFDF5 !important;
    border: 1px solid rgba(39, 174, 96, 0.15) !important;
}
.qa-call .qa-icon-wrapper {
    background-color: #D1FAE5;
    color: #27AE60;
}
.qa-call .qa-sub {
    color: #27AE60 !important;
}

.qa-lab {
    background-color: #FFF5ED !important;
    border: 1px solid rgba(226, 125, 38, 0.15) !important;
}
.qa-lab .qa-icon-wrapper {
    background-color: #FFEDD5;
    color: #E27D26;
}
.qa-lab .qa-sub {
    color: #E27D26 !important;
}
.qa-badge-discount {
    position: absolute;
    top: -8px;
    right: 16px;
    background-color: #E27D26 !important;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(226, 125, 38, 0.2);
    z-index: 5;
}

.qa-medicine {
    background-color: #EBF8FF !important;
    border: 1px solid rgba(43, 108, 176, 0.15) !important;
}
.qa-medicine .qa-icon-wrapper {
    background-color: #DBEAFE;
    color: #2B6CB0;
}
.qa-medicine .qa-sub {
    color: #2B6CB0 !important;
}

/* Recent Prescription Card Style */
.prescription-card {
    background: #E8F2FC !important;
    border: 1px solid rgba(13, 110, 253, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.04) !important;
}
.prescription-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
}
.prescription-bullet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.prescription-bullet-list li {
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.prescription-bullet-list li::before {
    content: "▪" !important;
    color: #1e293b !important;
    font-size: 12px !important;
    margin-right: 8px !important;
    display: inline-block;
    line-height: 1;
}
.prescription-divider {
    border-top: 1px dashed rgba(13, 110, 253, 0.25) !important;
    margin: 1.25rem 0;
}

/* Dot Indicators Styling */
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    padding: 0;
    transition: all 0.2s ease;
}
.carousel-dot.active {
    background-color: #1171ef;
    width: 20px;
    border-radius: 4px;
}

.btn-outline-success {
    border-color: #27AE60 !important;
    color: #27AE60 !important;
}
.btn-outline-success:hover {
    background-color: #27AE60 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Vertical 4-Column Quick Action Cards (Mobile & Desktop)
   ========================================================================== */

.quick-action-card-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
    height: 100%;
}
.quick-action-card-vertical:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.qa-icon-wrapper-vertical {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}
@media (min-width: 768px) {
    .qa-icon-wrapper-vertical {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 12px;
    }
}
.quick-action-card-vertical:hover .qa-icon-wrapper-vertical {
    transform: scale(1.1);
}
.qa-title-vertical {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .qa-title-vertical {
        font-size: 14px;
        margin-bottom: 6px;
    }
}
.qa-sub-vertical {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    line-height: 1;
}
@media (min-width: 768px) {
    .qa-sub-vertical {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* Specific theme classes mapped to colors */
.qa-appt .qa-icon-wrapper-vertical {
    background-color: #F3E8FF;
    color: #9B51E0;
}
.qa-call .qa-icon-wrapper-vertical {
    background-color: #D1FAE5;
    color: #27AE60;
}
.qa-medicine .qa-icon-wrapper-vertical {
    background-color: #DBEAFE;
    color: #2B6CB0;
}
.qa-queue {
    background-color: #FAF5FF !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
}
.qa-queue .qa-icon-wrapper-vertical {
    background-color: #F5F3FF;
    color: #8B5CF6;
}
.qa-queue .qa-sub-vertical {
    color: #8B5CF6 !important;
}

.bg-white{
    background: white !important;
}

/* Doctor List Page Styles */
.doctor-card {
    border: 1px solid rgba(13, 110, 253, 0.08) !important;
    border-radius: 16px !important;
    transition: all 0.25s ease-in-out;
}
.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08) !important;
    border-color: rgba(13, 110, 253, 0.15) !important;
}

/* Filter Pill Segmented Buttons */
.btn-outline-pill-primary {
    color: #495057;
    background-color: #f8fafc;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}
.btn-outline-pill-primary:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #212529;
}
.btn-check:checked + .btn-outline-pill-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15) !important;
}

.btn-pill-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
    transition: all 0.2s ease;
}
.btn-pill-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15) !important;
}

/* Custom Pagination styles matching mockup */
.pagination-custom .page-item .page-link {
    color: #6c757d;
    background-color: transparent;
    border: none;
    margin: 0 3px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.pagination-custom .page-item .page-link:hover {
    background-color: #e9ecef;
    color: #212529;
    border-radius: 50%;
}
.pagination-custom .page-item.active .page-link {
    background-color: var(--accent-color) !important;
    color: var(--bg-secondary) !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}
.pagination-custom .page-item.disabled .page-link {
    background-color: transparent;
    /*color: #dee2e6;*/
}

/* Dual Range Slider styling */
.dual-range-slider-container {
    position: relative;
    width: 100%;
    height: 25px;
    margin-top: 15px;
}
.range-slider {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.range-slider::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.range-slider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 5px;
    background: #dee2e6;
    border-radius: 3px;
}
