/* استایل‌های پایه */
.doctor-search-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.doctor-search-form .form-group {
    margin-bottom: 15px;
}

.doctor-search-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.doctor-search-form input[type="text"],
.doctor-search-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.doctor-search-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.doctor-search-form button:hover {
    background: #005177;
}

.doctor-results {
    margin-top: 30px;
}

/* استایل کارت پزشک */
.doctor-card {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.doctor-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    flex: 1;
    padding: 15px;
}

.doctor-info h3 {
    margin-top: 0;
    color: #333;
}

.specialty, .address {
    margin: 5px 0;
    color: #666;
}

.rating {
    margin: 10px 0;
}

.star {
    color: #ffc107;
    font-size: 18px;
}

.star.empty {
    color: #ddd;
}

.view-profile {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
}

.view-profile:hover {
    text-decoration: underline;
}

/* صفحه پروفایل پزشک */
.single-doctor .doctor-header {
    display: flex;
    margin-bottom: 30px;
}

.single-doctor .doctor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
}

.single-doctor .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-doctor .doctor-meta {
    flex: 1;
}

.single-doctor .doctor-meta h1 {
    margin-top: 0;
}

.single-doctor .doctor-contact {
    margin-top: 20px;
}

.single-doctor .doctor-contact span {
    display: block;
    margin-bottom: 5px;
}