.doctor-directory-fac40007 {
    font-family: sans-serif;
}
.doc-header {
    margin-bottom: 20px;
}
.doc-search {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.doc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.doc-filter-btn {
    padding: 8px 16px;
    background: #f1f1f1;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.doc-filter-btn.active, .doc-filter-btn:hover {
    background: #0A66C2;
    color: #fff;
}
.doc-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .doc-grid { grid-template-columns: repeat(4, 1fr); }
}
.doc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.doc-card:hover {
    transform: translateY(-5px);
}
.doc-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.doc-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
}
.doc-specialty {
    color: #0A66C2;
    font-size: 14px;
    margin-bottom: 15px;
}
.doc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.doc-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0A66C2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
}
.doc-btn:hover {
    opacity: 0.9;
    color: #fff;
}
