.doctor-finder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.doctor-finder-filters-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.doctor-finder-search {
    margin-bottom: 15px;
}

.doctor-finder-search .df-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.doctor-finder-search .df-input:focus {
    outline: none;
    border-color: #2271b1;
}

.doctor-finder-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.doctor-finder-filters .df-select {
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.doctor-finder-filters .df-select:focus {
    outline: none;
    border-color: #2271b1;
}

.doctor-finder-loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.doctor-finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.doctor-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.doctor-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 64px;
    font-weight: bold;
}

.doctor-card-content {
    padding: 20px;
}

.doctor-card-name {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.doctor-card-content p {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.doctor-card-content .icon {
    font-size: 16px;
    flex-shrink: 0;
}

.doctor-card-phone a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.doctor-card-phone a:hover {
    text-decoration: underline;
}

.doctor-card-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.doctor-card-link:hover {
    background: #135e96;
    color: #fff;
}

.doctor-finder-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.df-page-link {
    padding: 10px 16px;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    background: #fff;
    transition: all 0.3s;
    font-weight: 500;
}

.df-page-link:hover,
.df-page-link.active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

@media (max-width: 768px) {
    .doctor-finder-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-finder-filters {
        grid-template-columns: 1fr;
    }
}

