body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.container {
    max-width: 1000px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    text-align: center;
    color: #333;
}

h1 {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="time"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

input:focus {
    border-color: #007bff;
}

label {
    font-size: 14px;
    color: white;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: orange;
    color: white;
    border-radius: 25px;
    border: none;
    margin-top: 10px;
    margin-right: 15px;
}

.botonera {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar {
    width: 80%;
    margin: 10px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #fff;
    color: #000; /* Black text for contrast */
    font-weight: bold;
}

.fondo-gris {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 15px;
    width: 80%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.modal-contenido {
    border-radius: 15px;
    padding: 20px;
    background-color: white;
    color: black;
    text-align: left;
}

.cerrar {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.caja_registro {
    margin: 0 auto;
    max-width: 50%;
    padding: 20px;
}

@media (max-width: 800px) {
    .caja_registro {
        max-width: 90%;
    }
}

.boton_blanco {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.boton_blanco:hover {
    background-color: gray;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 10px;
}

.clickable-row:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.caja_menu {
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.caja_menu_contenido {
    margin: 20px;
    width: auto;
    height: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.imagen_cajita {
    background-color: orange;
    padding: 3px;
    max-width: 100%;
    height: auto;
    border-radius: 20%;
    margin-bottom: 5px;
}

.caja_general {
    margin: 1px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parte_baja {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caja_numeros {
    background-color: white;
    max-height: 400px;
    overflow-y: auto;
}

.caja_chat {
    width: 100%;
    background-color: #f9f9f9;
    max-height: 350px;
    overflow-y: auto;
}

#tablaDatos tr {
    cursor: pointer;
}

#tablaDatos tr:hover {
    background-color: #f7e588;
}

.caja_titulo_chat {
    background-color: black;
    text-align: left;
    color: white;
    padding: 20px;
}

.caja_regresar {
    display: flex;
    justify-content: left;
    width: 100%;
    align-items: center;
    cursor: pointer;
}

.imagen_flecha {
    margin: 10px;
    width: 30px;
    height: 30px;
}

.cajita_qr {
    width: 100%;
    text-align: center;
}

.contenedor_buscador {
    position: absolute;
    right: 0;
    margin-right: 200px;
}
