body {
    background-color: #f0f2f5;
    color: #333;
}

.main-content {
    padding-top: 0;
    padding-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.doctor-schedule-hero {
    background-color: #4CAF50;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-schedule-hero h1 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.doctor-list-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.doctor-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.doctor-card-header {
    background-color: #006400;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.doctor-card-header h3 {
    margin: 0;
}

.doctor-card-content {
    display: flex;
    flex-wrap: wrap;
    background-color: #e0e0e0;
    padding: 20px;
    gap: 20px;
}

.doctor-info {
    flex: 2;
    min-width: 280px;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}

.doctor-info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(2px);
    z-index: 0;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 20px;
    z-index: 1;
}

.doctor-details {
    z-index: 1;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.doctor-details .doctor-name {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.doctor-details .doctor-specialty {
    font-size: 1.1em;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.schedule-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.schedule-header {
    background-color: #006400;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
}

.schedule-header h4 {
    margin: 0;
}

.schedule-details {
    background-color: #ADD8E6;
    color: #333;
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.schedule-details p {
    margin: 5px 0;
    font-size: 1.2em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .doctor-schedule-hero {
        padding: 40px 15px;
    }

    .doctor-schedule-hero h1 {
        font-size: 2em;
    }

    .doctor-card-content {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .doctor-info {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-width: unset;
    }

    .doctor-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .doctor-details {
        text-align: center;
    }

    .doctor-details .doctor-name {
        font-size: 1.3em;
    }

    .doctor-details .doctor-specialty {
        font-size: 1em;
    }

    .schedule-info {
        min-width: unset;
    }

    .schedule-details p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .doctor-schedule-hero h1 {
        font-size: 1.6em;
    }

    .doctor-card-header {
        font-size: 1.1em;
        padding: 12px 15px;
    }

    .doctor-photo {
        width: 100px;
        height: 100px;
    }
}
