.doctor-selector-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
}

.ds-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.ds-select {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fafafa;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.ds-select:focus {
    border-color: #2e89ff;
    box-shadow: 0 0 5px rgba(46,137,255,0.3);
    outline: none;
}

.ds-doctors-list {
    margin-top: 20px;
}

.ds-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ds-doctor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ds-doctor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ds-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ds-main {
    flex: 1;
}

.ds-name {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.ds-extra {
    font-size: 13px;
    color: #666;
}

.ds-bio {
    font-size: 12px;
    margin: 4px 0 0;
    color: #555;
}

.ds-website a {
    font-size: 12px;
    color: #2e89ff;
    text-decoration: none;
}
.ds-website a:hover {
    text-decoration: underline;
}

.ds-final-btn {
    padding: 10px 25px;
    background-color: #2e89ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.ds-final-btn:hover {
    background-color: #1d6fdb;
}

.ds-no-doctors,
.ds-error {
    color: #d00;
    font-size: 14px;
    text-align: center;
}

/* لودینگ اسپینر */
.ds-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2e89ff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
    .ds-avatar img {
        width: 48px;
        height: 48px;
    }
    .ds-name {
        font-size: 14px;
    }
    .ds-bio {
        font-size: 12px;
    }
}
