.schedule {
    max-width: 1200px;
    margin: auto;
}

.schedule h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.gridx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 20px;
}

.card {
    position: relative;
    display: flex;
    align-items: center;
    background: #346db4;
    border: 2px solid #346db4;
    border-radius: 10px;
    padding: 20px;
    gap: 15px;
    border-bottom: 7px solid #68c3a2;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.info h3 {
    margin: -5px;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    /* text-transform: uppercase; */
}

.info h4 {
    margin: 0;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin-bottom: 15px;
}

.place {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 20px;
    color: #e7e5e5;
    font-weight: bold;
    text-align: center;
}

.time {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    color: #e7e5e5;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .gridx {
        grid-template-columns: 1fr;
    }
}

.filter {
    margin-bottom: 20px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    margin: 2px;
}

.btn.active {
    background: #68c3a2;
    color: white;
}

.doctor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.doctor-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}