.doctor-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.doctor-card {
    border: 1px solid #e3e3e3;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.doctor-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.doctor-info {
    font-size: 0.9em;
    color: #555;
}

.available-time {
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

.book-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.book-button:hover {
    background-color: #218838;
}

.consultation-fees {
    margin-top: 10px;
    font-size: 0.85em;
    color: #555;
}

@media (max-width: 768px) {
    .doctor-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
