@font-face {
    font-family: 'Bank Gothic Light BT';
    src: url('fuentes/bank-gothic-light-bt.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Estilos para el contenedor de la lista de reservas */
#appointment-list {
    list-style-type: none;
    /* Quitar viñetas por defecto */
    padding: 0;
    /* Eliminar el padding por defecto */
    margin: 0;
    /* Eliminar el margen por defecto */
}

/* Estilos para los elementos de la lista */
#appointment-list ul {
    padding: 0;
    /* Eliminar el padding interno de las listas */
    margin: 0;
    /* Eliminar el margen interno de las listas */
}

li {
    border-bottom: none;
}

/* Estilos generales para la lista de reservas */
#appointment-list {
    list-style: none;
    /* Eliminar viñetas de la lista */
    padding: 0;
    /* Quitar espaciado interno */
    margin: 0;
    /* Quitar margen */
}

#appointment-list li {
    background: #333;
    /* Color de fondo oscuro para los ítems */
    padding: 10px;
    /* Espaciado interno de los ítems */
    margin-bottom: 5px;
    /* Espaciado entre ítems */
    border-radius: 5px;
    /* Bordes redondeados para un diseño más suave */
    font-size: 14px;
    /* Tamaño de fuente adecuado */
    color: #fff;
    /* Color de texto blanco */
    display: flex;
    /* Usar flexbox para alinear los ítems */
    align-items: center;
    /* Centrar verticalmente el contenido */
    justify-content: space-between;
    /* Distribuir el contenido con espacio entre */
}

/* Estilos para los botones de eliminar */
/* Estilos para los botones de eliminar */
#appointment-list .delete-btn {
    background: #e74c3c;
    /* Fondo rojo para el botón de eliminar */
    border: none;
    /* Sin borde para el botón */
    color: #fff;
    /* Color blanco para el texto del botón */
    padding: 5px 10px;
    /* Espaciado interno del botón */
    border-radius: 5px;
    /* Bordes redondeados para el botón */
    cursor: pointer;
    /* Cambiar el cursor al pasar por encima */
    font-size: 14px;
    /* Tamaño de fuente del botón */
    width: 36px;
    /* Ancho fijo para el botón */
    text-align: center;
    /* Alinear el texto del botón al centro */
    display: flex;
    /* Usar flexbox para alinear el contenido del botón */
    align-items: center;
    /* Centrar verticalmente el contenido del botón */
    justify-content: center;
    /* Centrar horizontalmente el contenido del botón */
    margin-left: auto;
    /* Empujar el botón a la derecha del contenedor */
    margin-right: 20px;
}

#appointment-list .delete-btn i {
    margin-right: 5px;
    /* Espaciado entre el ícono y el texto */
}

/* Estilos específicos para la lista de reservas */
.reservation-list {
    list-style: none;
    /* Eliminar viñetas de la lista */
    padding: 0;
    /* Quitar espaciado interno */
    margin: 0;
    /* Quitar margen */
}

.reservation-item {
    display: flex;
    /* Usar flexbox para alinear ítems */
    align-items: center;
    /* Centrar verticalmente el contenido */
    margin-bottom: 10px;
    /* Espaciado entre ítems */
}

.reservation-item button.delete-btn {
    margin-left: 10px;
    /* Espaciado entre el ítem y el botón */
    background-color: #f44336;
    /* Rojo para el botón de eliminar */
    color: white;
    /* Color blanco para el texto del botón */
    border: none;
    /* Sin borde para el botón */
    padding: 5px 10px;
    /* Espaciado interno del botón */
    cursor: pointer;
    /* Cambiar el cursor al pasar por encima */
    display: none;
    /* Ocultar el botón por defecto, mostrar cuando sea necesario */
}


.reservation-item button.delete-btn:hover {
    background-color: #c62828;
    /* Rojo oscuro al pasar el ratón */
}

.modal {
    display: none;
    /* Ocultar por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
}



.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Bank Gothic Light BT', sans-serif;
    display: flex;
    flex-direction: column;
    /* background-color: black; */
    background-size: cover;
    /* Ajusta la imagen para cubrir todo el fondo */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    background: black;
    object-fit: cover;
    z-index: -1;
}

h2,
h1,
p {
    color: white;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
}

/*prueba*/

button#send-whatsapp {
    display: none;
}


.booking-form,
.reservations {
    border: 1px solid grey;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 20px;
}

.booking-form {
    max-width: 600px;
}

.reservations {
    max-width: none;
    width: 100%;
}

.reservations {
    text-align: center;
    background: transparent;
    color: white;
}

.booking-form {
    background: transparent;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: white;
    font-weight: bold;
}

.booking-form input,
.booking-form select {
    display: block;
    width: calc(100% - 16px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid grey;
    border-radius: 4px;
}

.booking-form label[for="time"] {
    font-size: 18px;
}

button {
    padding: 13px 15px;
    background-color: black;
    font-family: 'Bank Gothic Light BT', sans-serif;
    font-size: 20px;
    border: solid 1px white;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 200px;
    margin: 0 auto;
}

button:hover {
    background-color: grey;
    border-bottom: solid 1px white;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

li:last-child {
    border-bottom: none;
}

footer {
    padding: 20px;
    border-top: 1px solid grey;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.contact-info {
    text-align: center;
    flex: 1;
}

.contact-info p {
    margin: 5px 0;
}

.social-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.social-media a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.social-media a:hover {
    color: #007BFF;
}

header {
    text-align: center;
    padding: 20px;
    /* background-color: black; */
    border-bottom: solid 1px grey;
}

.brand-image img {
    max-width: 200px;
    height: auto;
    display: none;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.booking-form select {
    width: 100%;
}

/* Estilo para los modales */
.modal {
    display: none;
    /* Ocultar el modal por defecto */
    position: fixed;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.4);
    /* Fondo oscuro para el modal */
}

.modal-content {
    background-color: black;
    margin: 0;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo específico para los modales de confirmación y turnos reservados */
/*#confirmation-modal {
    left: calc(50% - 310px); /* Posición del primer modal */

/*#reservations-modal {
    left: calc(50% + 10px); /* Posición del segundo modal */

/* Estilo para los div de reservas */
.reservations-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.reservations {
    flex: 1;
    margin: 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: BLACK;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form input,
.booking-form select {
    display: block;
    width: calc(100% - 16px);
    font-family: 'Bank Gothic Light BT', sans-serif;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid grey;
    border-radius: 4px;
    background: #c6c6c6;
    color: black;
    font-weight: bold;
}

/* Estilos para el modal de autenticación */
#admin-auth-modal {
    display: none;
    /* Ocultar el modal por defecto */
    position: fixed;
    /* Fijo en la pantalla */
    z-index: 1;
    /* Encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    /* Ancho completo */
    height: 100%;
    /* Altura completa */
    overflow: auto;
    /* Desplazamiento si es necesario */
    background-color: rgb(0, 0, 0);
    /* Color de fondo */
    background-color: rgba(0, 0, 0, 0.4);
    /* Fondo con opacidad */
}

/* Estilos del contenido del modal */
#admin-auth-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* Margen vertical centrado */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Ancho del modal */
    max-width: 400px;
    /* Ancho máximo */
    text-align: center;
    /* Texto centrado */
}

/* Estilos del botón de cerrar */
#admin-auth-modal .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#admin-auth-modal .close-btn:hover,
#admin-auth-modal .close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo para el input y el botón */
#admin-auth-modal input,
#admin-auth-modal button {
    margin: 10px 0;
    padding: 10px;
    width: calc(100% - 22px);
    /* Ancho del input y el botón */
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {

    .booking-form,
    .reservations {
        padding: 15px;
        margin-bottom: 15px;
    }

    button {
        width: 100%;
        font-size: 18px;
    }

    .modal-content {
        width: 90%;
    }

    .reservations-container {
        flex-direction: column;
        gap: 0;
    }

    .reservations {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {

    .booking-form input,
    .booking-form select {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .social-media a {
        margin-left: 10px;
        font-size: 20px;
    }

    .brand-image img {
        max-width: 150px;
    }
}


/* Imagen de fondo */
.imagen-fondo {
    position: absolute;
    /* Posición absoluta para que quede detrás */
    top: 0;
    left: 0;
    width: 100%;
    /* Que ocupe todo el ancho */
    height: 100%;
    /* Que ocupe todo el alto */
    object-fit: cover;
    /* Ajusta la imagen sin deformarla */
    z-index: -1;
    /* Envía la imagen al fondo */
}

/* Estilos para la grilla de turnos */
.reservations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Crea columnas flexibles */
    gap: 20px;
    padding: 20px;
    background-color: #2c2c2c;
    /* Color de fondo */
    border-radius: 8px;
    margin-top: 20px;
}

.professional-column {
    background-color: #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.professional-column h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 2px solid #555;
    padding-bottom: 8px;
    font-size: 1.5em;
}

.professional-column h4 {
    color: #bbb;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.professional-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.professional-column ul li {
    background-color: #444;
    color: #fff;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.professional-column ul li .appointment-details {
    flex-grow: 1;
    margin-right: 10px;
}

.professional-column ul li .appointment-details a {
    color: #00e676;
    /* WhatsApp green */
    text-decoration: none;
    font-weight: bold;
}

.professional-column ul li .appointment-details a:hover {
    text-decoration: underline;
}

.delete-btn {
    background: none;
    border: none;
    color: #ff5555;
    cursor: pointer;
    font-size: 1.2em;
    transition: color 0.2s;
}

.delete-btn:hover {
    color: #ff0000;
}

.whatsapp-checkbox {
    margin-right: 10px;
}

/* Estilos para la nueva visualización de turnos por barbero */
.barber-columns-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.view-btn {
    padding: 12px 25px;
    background-color: #333;
    color: white;
    border: 2px solid #555;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Bank Gothic Light BT', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.view-btn.active {
    background-color: #c8a97e;
    border-color: #c8a97e;
    color: #000;
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.4);
}

.barber-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 20px auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 12px;
    justify-items: center;
}

.barber-column {
    width: 100%;
    min-height: 400px;
}

.barber-column {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.barber-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a97e, #d4b896, #c8a97e);
}

.barber-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: #c8a97e;
}

.barber-column h3 {
    text-align: center;
    color: #c8a97e;
    margin-bottom: 30px;
    border-bottom: 3px solid #c8a97e;
    padding-bottom: 15px;
    font-size: 1.6em;
    font-family: 'Bank Gothic Light BT', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    background: linear-gradient(45deg, #c8a97e, #d4b896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.barber-column h4 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-left: 4px solid #c8a97e;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(200, 169, 126, 0.15), rgba(200, 169, 126, 0.05));
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.barber-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.barber-column ul li {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid #444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.barber-column ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #c8a97e, #d4b896);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.barber-column ul li:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-color: #c8a97e;
}

.barber-column ul li:hover::before {
    opacity: 1;
}

.barber-column ul li .appointment-details {
    flex-grow: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.barber-column ul li .appointment-details a {
    color: #00e676;
    /* WhatsApp green */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.barber-column ul li .appointment-details a:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Estilos para la vista con filtro */
.filter-controls {
    margin-bottom: 25px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-controls label {
    color: #c8a97e;
    font-family: 'Bank Gothic Light BT', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-controls select {
    padding: 12px 20px;
    border: 2px solid #555;
    border-radius: 8px;
    background: #333;
    color: white;
    font-family: 'Bank Gothic Light BT', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 200px;
}

.filter-controls select option {
    background: #333;
    color: white;
    padding: 10px;
}

.filter-controls select:focus {
    outline: none;
    border-color: #c8a97e;
    box-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
    transform: translateY(-2px);
}

#filtered-appointments h3 {
    color: #c8a97e;
    margin-top: 25px;
    margin-bottom: 20px;
    border-bottom: 3px solid #c8a97e;
    padding-bottom: 12px;
    font-family: 'Bank Gothic Light BT', sans-serif;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.appointment-item {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    color: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 1px solid #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.appointment-item:hover {
    background: linear-gradient(145deg, #4a4a4a, #3a3a3a);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.appointment-item .appointment-details {
    flex-grow: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.appointment-item .appointment-details a {
    color: #00e676;
    /* WhatsApp green */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.appointment-item .appointment-details a:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Estilos para checkboxes de WhatsApp */
.whatsapp-checkbox {
    margin-right: 15px;
    transform: scale(1.3);
    accent-color: #c8a97e;
    cursor: pointer;
}

.whatsapp-checkbox:hover {
    transform: scale(1.4);
}

/* Estilos para botones de eliminar */
.delete-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.delete-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
}

.delete-btn i {
    font-size: 12px;
}

/* Media Queries para responsividad */
@media (max-width: 1200px) {
    .barber-columns {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .barber-columns {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reservations-grid {
        grid-template-columns: 1fr;
    }

    .barber-columns {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
        padding: 0 8px;
        margin: 10px auto;
    }

    .barber-column {
        min-height: auto;
        width: 100%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .view-controls {
        flex-direction: column;
        align-items: center;
    }

    .view-btn {
        width: 200px;
        margin-bottom: 10px;
    }

    .barber-column ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .barber-column h3 {
        font-size: 1.4em;
        letter-spacing: 2px;
    }

    .barber-column h4 {
        font-size: 1em;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .barber-columns-container {
        padding: 5px;
    }

    .barber-columns {
        padding: 0 5px;
        gap: 15px;
    }

    .barber-column {
        padding: 10px;
        width: 100%;
        max-width: 100%;
    }

    .barber-column h3 {
        font-size: 1.2em;
        letter-spacing: 1px;
    }

    .barber-column h4 {
        font-size: 0.9em;
        padding: 6px 10px;
    }

    .barber-column ul li {
        padding: 10px;
        font-size: 0.85em;
    }

    .appointment-details {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* Estilos para controles de vista dinamicos */
.view-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.view-btn {
    padding: 10px 15px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
    text-decoration: none;
    /* Para el enlace que parece botón */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
}

.view-btn.active,
.view-btn:hover {
    background-color: #d4af37;
    color: black;
}

/* === IMPROVED ADMIN MODAL STYLES === */
.modal-content {
    background-color: #1e1e1e;
    /* Fondo oscuro premium */
    margin: 15% auto;
    /* Centrado vertical mejorado */
    padding: 30px;
    border: 1px solid #d4af37;
    /* Borde dorado sutil */
    border-radius: 15px;
    /* Bordes redondeados */
    width: 90%;
    max-width: 400px;
    /* Ancho máximo contenido */
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    /* Sombra elegante */
    position: relative;
    font-family: 'Bank Gothic Light BT', sans-serif;
}

/* Estilos para el formulario de autenticación */
#auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#auth-form label {
    text-align: left;
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: -10px;
}

#auth-form input {
    background-color: #2d2d2d;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

#auth-form input:focus {
    border-color: #d4af37;
}

#auth-form button {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.1s;
}

#auth-form button:hover {
    background-color: #b5952f;
}

#auth-form button:active {
    transform: scale(0.98);
}

/* Estilos para el Bot de Consulta */
.bot-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #c8a97e; /* Usando el color dorado existente */
    color: black;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1001; /* Encima de todo */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.bot-float-btn:hover {
    transform: scale(1.1);
    background-color: #d4b896;
}

/* Modal del Bot */
#bot-modal .modal-content {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border: 2px solid #c8a97e;
    color: white;
    max-width: 400px;
    text-align: center;
    position: relative;
}

#bot-modal input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: white;
    font-family: 'Bank Gothic Light BT', sans-serif;
    text-align: center;
    font-size: 1.2em;
}

#bot-results {
    margin-top: 20px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

/* Scrollbar para resultados */
#bot-results::-webkit-scrollbar {
    width: 8px;
}
#bot-results::-webkit-scrollbar-track {
    background: #1e1e1e; 
}
#bot-results::-webkit-scrollbar-thumb {
    background: #555; 
    border-radius: 4px;
}
#bot-results::-webkit-scrollbar-thumb:hover {
    background: #c8a97e; 
}

.bot-result-item {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #c8a97e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}