body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Importante para móviles */
    min-height: 100vh;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 1;
    flex-wrap: wrap;
}

.left-panel {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
    box-sizing: border-box;
}

.clinic-header {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.clinic-header h1 {
    margin: 0;
    font-size: 36px;
    color: #fff;
}

iframe,
#player {
    width: 90%;
    height: 500px;
    border: none;
    margin-top: 20px;
}

.right-panel {
    width: 40%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden; /* No queremos que se corte en móviles */
}

.appointments-table-wrapper {
    overflow-y: auto;
    max-height: 80vh;
    padding-top: 20px;
}

.appointments-table {
    width: 100%;
    border-collapse: collapse;
    border: 10px solid #fcf5a1;
}

.appointments-table th {
    padding: 12px 20px;
    text-align: center;
    font-size: 24px;
    background-color: #03be00;
    color: white;
    border-bottom: 3px solid #fcf5a1;
    text-transform: uppercase;
}

.appointments-table td {
    padding: 12px 20px;
    text-align: center;
    font-size: 20px;
    color: #000;
    background: #f8f9fa;
}

.appointments-table td:nth-child(1) {
    background-color: #0059b8;
    color: white;
}

.appointments-table td:nth-child(2) {
    background-color: #0096a9;
    color: white;
}

.appointments-table tr:hover {
    background-color: #f1f1f1;
}
.en-evaluacion td {
    background-color: #ffcc00 !important; /* Amarillo */
    color: #000 !important;
    font-weight: bold;
}
/* Responsive Styles */
@media (max-width: 1068px) {
    .container {
        flex-direction: column;
    }

    .right-panel {
        order: 1;
        width: 100%;
    }

    .left-panel {
        order: 2;
        width: 100%;
    }

    .clinic-header h1 {
        font-size: 28px;
    }

    iframe,
    #player {
        padding-left: 40px;
        height: 300px;
    }

    .appointments-table th,
    .appointments-table td {
        font-size: 18px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .clinic-header h1 {
        font-size: 22px;
    }

    iframe,
    #player {
        height: 200px;
    }

    .appointments-table th,
    .appointments-table td {
        font-size: 16px;
        padding: 8px 10px;
    }
}
