        .page-title {
            text-align: center;
            margin: 15px 0 20px;
            color: #0f172a;
            font-weight: 600;
            font-size: 28px;
        }

        .page-description {
  font-size: 16px;
  color: #555;
  text-align: center;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 20px;
 
}

        
        /* Filters Section */
        .filters {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
        }
        
        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 12px;
        }
        
        .filter-group {
            flex: 1;
            min-width: 180px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #475569;
            font-size: 13px;
        }
        
        .filter-group select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
            color: #334155;
            background: #f8fafc;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 8px;
        }
        
        .btn {
            padding: 10px 18px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .btn-primary {
            background: #2563eb;
            color: white;
        }
        
        .btn-primary:hover {
            background: #1d4ed8;
        }
        
        .btn-secondary {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #e2e8f0;
        }
        
        .btn-secondary:hover {
            background: #e2e8f0;
        }
        
        /* Results Header */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .results-count {
            font-size: 16px;
            color: #475569;
            font-weight: 500;
        }
        
        .sort-options {
            position: relative;
        }
        
        .sort-options select {
            padding: 8px 12px;
            padding-right: 35px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            background: #f8fafc;
            color: #334155;
            font-size: 14px;
            appearance: none;
        }
        
        .sort-options:after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            pointer-events: none;
            font-size: 11px;
        }
        
        /* Location and Status Messages */
        .location-status {
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        .location-detecting {
            background: #fffbeb;
            border: 1px solid #fde68a;
            color: #92400e;
        }
        
        .location-success {
            background: #f0f9ff;
            border: 1px solid #7dd3fc;
            color: #0c4a6e;
        }
        
        .location-error {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #991b1b;
        }
        
        .location-info {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #475569;
        }
        
        /* Doctor List Styles */
        .doctors-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
      
        .doctor-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 16px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
}

.doctor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.doctor-avatar {
    background: #007bff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-info {
    flex: 1;
    margin-left: 12px;
}

.doctor-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.doctor-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    margin-top: 6px;
    color: #666;
}

.doctor-top-right {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.doctor-top-right .fees {
    font-size: 16px;
    font-weight: bold;
    color: #28a745;
}

.detail-group {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

.action-buttons {
    margin-top: 16px;
}

.btn-book {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-book:hover {
    background: #0056b3;
}

        .doctor-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .doctor-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dbeafe, #93c5fd);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-weight: 600;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .doctor-info {
            flex: 1;
        }
        
        .doctor-info h3 {
            font-size: 18px;
            margin-bottom: 4px;
            color: #0f172a;
        }
        
        .doctor-info .specialty {
            color: #2563eb;
            font-weight: 500;
            margin-bottom: 4px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .doctor-info .education {
            color: #64748b;
            font-size: 13px;
            margin-bottom: 6px;
        }
        
        .doctor-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 8px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: #475569;
        }
        
        .experience {
            background: #dbeafe;
            color: #1e40af;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .stars {
            color: #f59e0b;
            display: flex;
        }
        
        .stars i {
            font-size: 12px;
        }
        
        .reviews {
            color: #64748b;
            font-size: 13px;
        }
        
        .doctor-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            border-top: 1px solid #f1f5f9;
            padding-top: 15px;
            margin-bottom: 15px;
        }
        
        .detail-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .detail-label {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .detail-value {
            font-size: 14px;
            color: #0f172a;
            font-weight: 500;
        }
        
        .clinic-name {
            font-weight: 600;
            color: #0f172a;
            font-size: 14px;
        }
        
        .clinic-address {
            color: #64748b;
            font-size: 13px;
            line-height: 1.4;
        }
        
        .fees {
            font-weight: 600;
            color: #0f172a;
            font-size: 15px;
        }
        
        .verified-badge {
            display: inline-flex;
            align-items: center;
            background: #dcfce7;
            color: #166534;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
        }
        
        .verified-badge i {
            margin-right: 4px;
            font-size: 10px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: flex-end;
        }
        
        .btn-book {
            padding: 8px 16px;
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .btn-book:hover {
            background: #1d4ed8;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .filter-row {
                flex-direction: column;
                gap: 12px;
            }
            
            .filter-group {
                min-width: 100%;
            }
            
            .results-header {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .doctor-header {
                flex-direction: column;
                text-align: center;
            }
            
            .doctor-avatar {
                margin-right: 0;
                margin-bottom: 12px;
                align-self: center;
            }
            
            .doctor-meta {
                justify-content: center;
            }
            
            .action-buttons {
                justify-content: center;
            }
            
            .doctor-details {
                grid-template-columns: 1fr;
            }
        }