/* =========================================
   DrugHub - DASHBOARD & USER PAGES STYLESHEET
   Brand Colors: Blue (#004DA0) & Green (#44D62C)
   Merged from: dashboard.php, profile.php, appointments.php, pharmacy.php, prescriptions.php
   ========================================= */

/* ===============================
   CSS CUSTOM PROPERTIES / ROOT VARIABLES
   =============================== */
:root {
    /* Primary Brand Colors */
    --primary-blue: #004DA0;
    --primary-dark: #003a80;
    --primary-green: #44D62C;
    --primary-green-dark: #3bc224;
    
    /* Additional Brand Colors */
    --orange: #ff8c00;
    --whatsapp-green: #25d366;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #004DA0 0%, #0066cc 100%);
    --gradient-green: linear-gradient(135deg, #44D62C 0%, #3bc224 100%);
    --gradient-brand: linear-gradient(135deg, #004DA0 0%, #004DA0 60%, #44D62C 100%);
    
    /* Background Colors */
    --light-bg: #f8fafc;
    --light-gray: #e2e8f0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===============================
   GLOBAL RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* ===============================
   HEADER / TOP BAR
   =============================== */
.top-bar {
    background: var(--gradient-brand);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.7rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

.social-icons i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .top-bar {
        font-size: 0.85rem;
        padding: 0.7rem 0;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

/* ===============================
   HEADER / NAVIGATION
   =============================== */
.header {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.brand-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.2rem;
}

.navbar-nav .nav-link:hover {
    background-color: #f0f4ff;
    color: var(--primary-blue);
    transform: translateX(5px);
}

.navbar-nav .nav-link.active {
    background: var(--gradient-brand);
    color: white !important;
    font-weight: 600;
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-text {
    font-size: 0.95rem;
}

.logout-link {
    color: #dc3545 !important;
}

.logout-link:hover {
    background-color: #ffebee !important;
    color: #bb2d3b !important;
}

@media (min-width: 992px) {
    .brand-wrapper {
        text-align: left;
        align-items: flex-start;
    }
    
    .navbar-nav {
        margin-left: auto;
    }
    
    .navbar-nav .nav-link:hover {
        transform: translateY(-2px);
    }
    
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    
    .navbar-toggler {
        display: none;
    }
}

.header-icons {
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-icons:hover {
    transform: scale(1.2);
    color: var(--primary-green);
}

/* ===============================
   SEARCH BAR
   =============================== */
.search-section {
    padding: 1.5rem 1rem;
    background: transparent;
}

.search-box {
    background: var(--gradient-brand);
    border-radius: 30px;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.3);
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 12px 30px rgba(0, 77, 160, 0.4);
    transform: translateY(-2px);
}

.search-box i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.9);
}

@media (min-width: 768px) {
    .search-section {
        padding: 2rem 3rem;
    }
    
    .search-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===============================
   PAGE TITLE SECTION
   =============================== */
.page-title-section {
    padding: 1.5rem 1rem;
    background: transparent;
}

.page-title-box {
    background: var(--gradient-brand);
    border-radius: 30px;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.3);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title-box:hover {
    box-shadow: 0 12px 30px rgba(0, 77, 160, 0.4);
    transform: translateY(-2px);
}

.page-title-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title-content i {
    font-size: 1.25rem;
}

.page-title-content h1 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.btn-back,
.btn-new-appointment {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-back:hover,
.btn-new-appointment:hover {
    transform: scale(1.05);
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .page-title-section {
        padding: 2rem 3rem;
    }
    
    .page-title-box {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .page-title-content h1 {
        font-size: 1.3rem;
    }
}

/* ===============================
   CAROUSEL SECTION
   =============================== */
.carousel-section {
    padding: 0 1rem 1rem;
}

.carousel-item img {
    border-radius: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--primary-green);
}

@media (min-width: 768px) {
    .carousel-section {
        padding: 0 3rem 2rem;
    }
    
    .carousel-item img {
        height: 350px;
    }
}

@media (min-width: 1200px) {
    .carousel-section {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .carousel-item img {
        height: 400px;
    }
}

/* ===============================
   UPLOAD PRESCRIPTION SECTION
   =============================== */
.upload-section {
    background: white;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.upload-section:hover {
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.2);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.upload-content h5 {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.upload-content p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.upload-btn {
    background: var(--gradient-brand);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
    color: white;
}

.upload-illustration {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4e9e0 0%, #e8f5f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    box-shadow: 0 5px 15px rgba(68, 214, 44, 0.15);
}

@media (min-width: 768px) {
    .upload-section {
        margin: 2rem 3rem;
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .upload-section {
        max-width: 1200px;
        margin: 2rem auto;
    }
}

/* ===============================
   SERVICE BUTTONS / CARDS
   =============================== */
.services-section {
    padding: 0 1rem 1.5rem;
}

.service-btn {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-btn:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 77, 160, 0.3);
    background: var(--gradient-brand);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-btn:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-btn span {
    font-size: 0.875rem;
    display: block;
    font-weight: 500;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.15);
    border-color: var(--primary-green);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

@media (min-width: 768px) {
    .services-section {
        padding: 0 3rem 2rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .services-section {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===============================
   CONTACT BUTTONS
   =============================== */
.contact-section {
    padding: 0 1rem 1.5rem;
}

.call-btn {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a00 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.4);
}

.whatsapp-btn {
    background: var(--gradient-green);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(68, 214, 44, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(68, 214, 44, 0.4);
}

.call-btn i, .whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 0 3rem 2rem;
    }
    
    .contact-section .row {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .contact-section {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===============================
   STATS SECTION
   =============================== */
.stats-section {
    padding: 0 1rem 1rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 77, 160, 0.3);
    border-color: var(--primary-green);
}

.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
}

.stat-icon.scheduled,
.stat-icon.processed {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.stat-icon.in_progress {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.stat-icon.completed,
.stat-icon.dispensed {
    background: var(--gradient-green);
    color: white;
}

.stat-icon.cancelled {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
}

.stat-icon.no_show {
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

@media (min-width: 768px) {
    .stats-section {
        padding: 0 3rem 2rem;
    }
}

@media (min-width: 1200px) {
    .stats-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem 2rem;
    }
}

/* ===============================
   FILTER SECTION
   =============================== */
.filter-section {
    background: white;
    margin: 0 1rem 1rem;
    padding: 1.2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-select {
    flex: 1;
    min-width: 120px;
    padding: 0.7rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 214, 44, 0.1);
}

.search-input {
    flex: 2;
    min-width: 200px;
    padding: 0.7rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 214, 44, 0.1);
}

@media (min-width: 768px) {
    .filter-section {
        margin: 0 3rem 2rem;
        padding: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .filter-section {
        max-width: 1200px;
        margin: 0 auto 2rem;
    }
}

/* ===============================
   BRANDS / PRODUCTS SECTION
   =============================== */
.brands-section {
    padding: 1.5rem 1rem;
    background: white;
    margin: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.brands-header h6 {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    letter-spacing: 1px;
}

.brands-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.see-all {
    color: #dc3545;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.see-all:hover {
    transform: translateX(5px);
}

.product-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: block;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-category {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.prescription-badge {
    font-size: 0.7rem;
    background: #ffc107;
    color: #333;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.stock-status {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stock-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.stock-in {
    background: #d1ecf1;
    color: #0c5460;
}

.stock-low {
    background: #fff3cd;
    color: #856404;
}

.stock-out {
    background: #f8d7da;
    color: #721c24;
}

.add-to-cart-btn {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

.add-to-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.4);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .brands-section {
        padding: 2rem 3rem;
        margin: 2rem 3rem;
    }
}

@media (min-width: 1200px) {
    .brands-section {
        max-width: 1400px;
        margin: 2rem auto;
        padding: 3rem;
    }
}

/* ===============================
   APPOINTMENTS SECTION
   =============================== */
.appointments-section {
    padding: 1.5rem 1rem;
    background: white;
    margin: 0 1rem 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.appointments-header h6 {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    letter-spacing: 1px;
}

.appointments-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.appointment-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: block;
}

.appointment-card:hover {
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.appointment-card:last-child {
    margin-bottom: 0;
}

.appointment-date-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 85px;
    transition: all 0.3s ease;
}

.appointment-card:hover .appointment-date-badge {
    background: linear-gradient(135deg, #d4e9e0 0%, #e8f5f0 100%);
}

.appointment-date-badge .day {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appointment-date-badge .date {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0.2rem 0;
}

.appointment-date-badge .time {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.appointment-info {
    flex: 1;
}

.doctor-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
}

.appointment-specialty {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.appointment-type-badge {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge.scheduled {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.status-badge.in_progress {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.status-badge.completed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.status-badge.cancelled {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.status-badge.no_show {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #616161;
}

.appointment-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.action-btn {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: calc(50% - 0.25rem);
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-btn.view {
    background: var(--gradient-blue);
    color: white;
}

.action-btn.view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.3);
}

.action-btn.reschedule {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.action-btn.reschedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
}

.action-btn.cancel {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
}

.action-btn.cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 129, 129, 0.3);
}

.action-btn.book-again {
    background: var(--gradient-green);
    color: white;
}

.action-btn.book-again:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(68, 214, 44, 0.3);
}

@media (min-width: 768px) {
    .appointments-section {
        padding: 2rem 3rem;
        margin: 0 3rem 2rem;
    }
    
    .action-btn {
        flex: initial;
        min-width: auto;
    }
}

@media (min-width: 1200px) {
    .appointments-section {
        max-width: 1400px;
        margin: 0 auto 2rem;
        padding: 3rem;
    }
}

/* ===============================
   PROFILE CONTENT
   =============================== */
.profile-content,
.prescription-content {
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .profile-content,
    .prescription-content {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 1200px) {
    .profile-content,
    .prescription-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem 3rem;
    }
}

/* Profile Card */
.profile-card,
.section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.5rem;
}

/* ===============================
   FORM STYLES
   =============================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 214, 44, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.text-muted {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

/* ===============================
   BUTTONS
   =============================== */
.btn-save,
.btn-primary-custom {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

.btn-save:hover,
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.4);
    color: white;
}

/* ===============================
   PRESCRIPTION / HISTORY CARDS
   =============================== */
.history-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.history-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.history-title {
    flex: 1;
}

.history-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.history-subtitle {
    font-size: 0.85rem;
    color: #666;
}

.history-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.meta-item i {
    color: var(--primary-green);
}

.history-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-action {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.btn-download {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 77, 160, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 77, 160, 0.4);
    color: white;
}

.btn-view {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(66, 153, 225, 0.4);
    color: white;
}

.btn-order {
    background: linear-gradient(135deg, #44D62C 0%, #3bc224 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(68, 214, 44, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(68, 214, 44, 0.4);
    color: white;
}

.btn-analyze {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(156, 39, 176, 0.4);
    color: white;
}

/* ===============================
   STATUS BADGES
   =============================== */
.badge-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-pending {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.badge-processed {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.badge-dispensed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.badge-cancelled {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

/* ===============================
   UPLOAD ZONE
   =============================== */
.upload-zone {
    border: 3px dashed #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* ===============================
   AI ANALYSIS
   =============================== */
.analysis-result {
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.analysis-section {
    margin-bottom: 1.5rem;
}

.analysis-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analysis-text {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.alert-box {
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-box.info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.alert-box.warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.alert-box.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

/* ===============================
   PHARMACY PAGES
   =============================== */
.pharmacy-header {
    background: var(--gradient-brand);
    color: white;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

.pharmacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pharmacy-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.search-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.search-box-pharmacy {
    position: relative;
}

.search-box-pharmacy input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box-pharmacy input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(68, 214, 44, 0.1);
}

.search-box-pharmacy button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box-pharmacy button:hover {
    transform: translateY(-50%) scale(1.05);
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.medications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .medications-container {
        padding: 0 3rem 2rem;
    }
}

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

.results-count {
    font-size: 1.1rem;
    color: #666;
}

/* ===============================
   PAGINATION
   =============================== */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.page-link {
    padding: 0.6rem 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.page-link.active {
    background: var(--gradient-brand);
    color: white;
    border-color: transparent;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===============================
   EMPTY STATE
   =============================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
	margin-right: 1rem;
}

.empty-state h5 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ===============================
   MODAL
   =============================== */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: var(--gradient-brand);
    color: white;
    border-radius: 20px 20px 0 0;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* ===============================
   CHAT FAB (Floating Action Button)
   =============================== */
.chat-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 77, 160, 0.4);
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 77, 160, 0.5);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 77, 160, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(68, 214, 44, 0.6);
    }
}

/* ===============================
   BOTTOM SPACING
   =============================== */
.bottom-spacing {
    height: 80px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
    .pharmacy-header h1 {
        font-size: 2rem;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
}

/* ===============================
   DRUG DETAILS PAGES (drug-details.php, drug-details2.php)
   =============================== */

/* Prevent iOS zoom on inputs */
input[type="text"],
input[type="number"],
select,
textarea,
button {
    font-size: 16px !important;
}

/* Back Button */
.back-btn {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0 0 0;
    transition: all 0.3s ease;
}

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

/* Drug Container & Card */
.drug-container {
    max-width: 1200px;
    margin: 1rem auto 2rem;
}

.drug-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.drug-image-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    text-align: center;
}

.drug-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.drug-details-section {
    padding: 2rem;
}

.drug-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.drug-generic {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(0, 77, 160, 0.05) 0%, rgba(68, 214, 44, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bulk-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    margin-top: 0.75rem;
}

.bulk-price-label {
    color: #555;
    font-size: 0.95rem;
}

.bulk-price-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e7f9f0;
    color: #2d6a4f;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Custom Badges */
.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-prescription {
    background: #fff3cd;
    color: #856404;
}

.badge-stock {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-bulk {
    background: rgba(68, 214, 44, 0.15);
    color: #2d6a4f;
}

/* Order Type Selector */
.order-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.order-section-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.order-type-card {
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.order-type-card:hover:not(.disabled) {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 214, 44, 0.2);
}

.order-type-card.active {
    background: var(--gradient-brand);
    border-color: var(--primary-green);
    color: white;
}

.order-type-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.order-type-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.order-type-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.order-type-price {
    font-size: 0.9rem;
    opacity: 0.9;
}

.order-type-note {
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.order-type-card.active .order-type-note {
    color: white;
}

/* Quantity Selector */
.quantity-section {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
}

.quantity-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.quantity-sublabel {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-green);
    background: white;
    color: var(--primary-green);
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
}

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

.qty-input {
    width: 100px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Stock Breakdown */
.stock-breakdown {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.stock-breakdown-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stock-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.stock-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--primary-green);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #e9ecef;
}

.stock-label {
    color: #666;
}

.stock-value {
    font-weight: 600;
    color: #333;
}

/* Warning & Info Boxes */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.warning-box i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.out-of-stock-box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.out-of-stock-box i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.login-prompt-box {
    background: #e7f1ff;
    border-left: 4px solid #0d6efd;
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.login-prompt-box i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

.login-prompt-box a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: underline;
}

.info-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.info-section h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    margin-bottom: 0.75rem;
}

.info-label {
    font-weight: 600;
    color: #666;
    min-width: 180px;
}

.info-value {
    color: #333;
}

/* ===============================
   BOOK APPOINTMENT PAGE (book-appointment.php)
   =============================== */

/* Booking Content */
.booking-content {
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .booking-content {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 1200px) {
    .booking-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem 3rem;
    }
}

/* Progress Steps */
.progress-steps {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.step.active i {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

.step.completed i {
    background: var(--primary-green);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-align: center;
}

.step.active .step-label {
    color: var(--primary-blue);
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-section {
    display: none;
}

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

.section-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* Consultation Type Cards */
.consultation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.consultation-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.15);
    border-color: var(--primary-green);
}

.consultation-card.selected {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
    box-shadow: 0 10px 30px rgba(68, 214, 44, 0.2);
}

.consultation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-blue);
}

.consultation-card.selected .consultation-icon {
    background: var(--gradient-brand);
    color: white;
}

.consultation-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.consultation-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.consultation-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Doctor Selection Cards */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.doctor-card.selected {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
}

.doctor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.doctor-rating {
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
}

.doctor-fee {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.btn-nav {
    flex: 1;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-prev {
    background: #f0f0f0;
    color: var(--primary-blue);
}

.btn-prev:hover {
    background: #e2e8f0;
}

.btn-next {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.4);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Booking Summary */
.summary-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-row:last-child {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-label {
    color: #666;
    font-weight: 600;
}

.summary-value {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */

@media (max-width: 768px) {
    .drug-title {
        font-size: 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .order-type-grid {
        grid-template-columns: 1fr;
    }
    
    .info-label {
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .drug-image-section {
        padding: 2rem;
    }
    
    .drug-details-section {
        padding: 1.5rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===============================
   APPOINTMENT DETAILS PAGE (view-appointment.php)
   =============================== */

/* Appointment Details Content */
.appointment-details-content {
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .appointment-details-content {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 1200px) {
    .appointment-details-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem 3rem;
    }
}

/* Info Card */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 77, 160, 0.15);
}

.card-header-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.card-header-custom i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header-custom h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Status Badge Large */
.status-badge-large {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge-large.scheduled {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.status-badge-large.in_progress {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.status-badge-large.completed {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.status-badge-large.cancelled {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.status-badge-large.no_show {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #616161;
}

/* Doctor Profile Section */
.doctor-profile {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.doctor-profile .doctor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.doctor-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.doctor-info .doctor-specialty {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-details {
    font-size: 0.85rem;
    color: #666;
}

/* Info Row */
.info-row {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .info-label {
    font-weight: 600;
    color: #666;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-row .info-label i {
    color: var(--primary-green);
}

.info-row .info-value {
    color: var(--primary-blue);
    font-weight: 500;
    flex: 1;
}

/* Action Buttons - Appointment Details Specific */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

.btn-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 77, 160, 0.3);
    color: white;
}

.btn-action.secondary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.btn-action.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
    color: white;
}

.btn-action.danger {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
}

.btn-action.danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 129, 129, 0.3);
    color: white;
}

.btn-action.success {
    background: linear-gradient(135deg, #44D62C 0%, #3bc224 100%);
    color: white;
}

.btn-action.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(68, 214, 44, 0.3);
    color: white;
}

/* Alert Box - Appointment Specific */
.alert-box {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-box i {
    font-size: 1.5rem;
}

/* ===============================
   LAB TESTS PAGES (lab-tests.php, lab-view-booking.php)
   Longa Laboratories Brand Colors
   =============================== */

/* Lab Content Container */
.lab-content {
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .lab-content {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 1200px) {
    .lab-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem 3rem;
    }
}

/* Lab Stats - Specific Icon Colors */
.stat-icon.pending {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.stat-icon.in_analysis {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.stat-icon.completed {
    background: var(--gradient-brand);
    color: white;
}

/* Lab Service Cards - Duplicate Prevention */
/* Already defined in main section, using existing .service-cards and .service-card */

/* Test Selection Cards */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.test-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.test-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.test-card.selected {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
}

.test-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.test-category {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.test-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.test-info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Lab Booking Specific Badges */
.badge-in-analysis {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

/* Test Items in Booking View */
.test-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.test-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.test-code {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.test-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.test-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.test-detail-item i {
    color: var(--primary-green);
}

/* Test Status Badges */
.test-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-sample-collected {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.status-in-progress {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
}

/* Lab Specific Action Buttons */
.btn-action.secondary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-action.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Lab Alert Boxes */
.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-info i {
    font-size: 1.5rem;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-warning i {
    font-size: 1.5rem;
}

/* Print Styles for Lab Reports */
@media print {
    .btn-action, .chat-fab, .top-bar, .btn-back, .action-buttons {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .info-card, .test-item {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .test-item {
        background: white;
    }
}

/* ===============================
   BROWSE DOCTORS PAGE (browse-doctors.php)
   =============================== */

/* Browse Content Container */
.browse-content {
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .browse-content {
        padding: 0 3rem 3rem;
    }
}

@media (min-width: 1200px) {
    .browse-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem 3rem;
    }
}

/* Results Header */
.results-header {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.results-count {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.results-count i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

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

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

/* Doctor Card - Browse Version */
.doctor-card-browse {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.doctor-card-browse:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-green);
}

/* Availability Badge */
.availability-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.availability-badge i {
    font-size: 0.5rem;
}

.availability-badge.available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.availability-badge.available i {
    color: #4caf50;
    animation: pulse-dot 2s infinite;
}

.availability-badge.busy {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.availability-badge.busy i {
    color: #ff9800;
}

.availability-badge.offline {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #616161;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Doctor Avatar Container */
.doctor-avatar-container {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.doctor-avatar-browse {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Doctor Info Section */
.doctor-info-browse {
    padding: 1.5rem;
}

.doctor-name-browse {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}

.doctor-specialty-browse {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Doctor Meta Information */
.doctor-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.doctor-meta .meta-item {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.doctor-meta .meta-item i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Rating Section */
.doctor-rating-browse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.doctor-rating-browse i {
    color: #ffc107;
    font-size: 0.9rem;
}

.doctor-rating-browse .rating-number {
    font-weight: 700;
    color: var(--primary-blue);
    margin-left: 0.5rem;
}

.doctor-rating-browse .consultations-count {
    font-size: 0.8rem;
    color: #666;
}

/* Consultation Fee */
.consultation-fee {
    background: linear-gradient(135deg, #e6f0ff 0%, #cce0ff 100%);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.consultation-fee i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Doctor Bio */
.doctor-bio {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

/* Doctor Actions */
.doctor-actions {
    padding: 0 1.5rem 1.5rem;
}

.btn-book-browse {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--gradient-brand);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 77, 160, 0.2);
}

.btn-book-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 77, 160, 0.3);
    color: white;
}

.btn-book-browse.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-book-browse.disabled:hover {
    transform: none;
}

.btn-book-browse i {
    margin-right: 0.5rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-custom {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-custom .page-item {
    margin: 0;
}

.pagination-custom .page-link {
    padding: 0.6rem 1rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pagination-custom .page-link:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.pagination-custom .page-item.active .page-link {
    background: var(--gradient-brand);
    color: white;
    border-color: var(--primary-blue);
}

.pagination-custom .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.pagination-custom .page-item.disabled .page-link:hover {
    transform: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .doctor-avatar-browse {
        width: 100px;
        height: 100px;
    }
    
    .doctor-name-browse {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .doctor-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pagination-custom .page-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ===============================
   END OF STYLESHEET
   ========================================= */
