/* Base Styles */
body { font-family: 'Segoe UI', sans-serif; margin: 0; background: #f9f9f9; }
.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; padding: 20px; background: #fff; border-bottom: 1px solid #eee; }
.nav-links { list-style: none; display: flex; gap: 20px; }

/* Grid System */
.practitioner-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 25px; 
    margin-top: 30px; 
}

/* Card Styling */
.practitioner-card { 
    background: #fff; 
    border-radius: 12px; 
    padding: 20px; 
    text-align: center; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
}
.card-avatar { 
    width: 60px; height: 60px; background: #eee; border-radius: 50%; 
    margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; 
}
.btn-profile { 
    display: block; margin-top: 15px; padding: 10px; 
    background: #333; color: #fff; text-decoration: none; border-radius: 6px; 
}

.modality-page .section-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.modality-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.no-results {
    grid-column: 1 / -1;
    padding: 50px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #ccc;
}
.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.breadcrumb span {
    color: #999;
}

.city-modality-page h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-top: 10px;
}

/* Profile Layout */
.profile-container { margin-top: 40px; }

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.profile-avatar-large {
    width: 120px; height: 120px; background: #5d5dff; color: #fff;
    font-size: 3rem; display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.profile-title-area h1 { margin: 0; font-size: 2.5rem; }
.subtitle { color: #666; font-size: 1.2rem; margin-top: 5px; }

/* Content Grid */
.profile-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }

.profile-main, .details-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.details-card h3 { margin-top: 0; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.details-card ul { list-style: none; padding: 0; }
.details-card li { margin-bottom: 10px; }

.btn-primary {
    background: #333; color: #fff; padding: 12px 25px;
    text-decoration: none; border-radius: 8px; font-weight: bold;
}