/* ESTILOS CSS */



/* Estilo común para los botones */
.btn-outline {
    color: #10B981; /* Verde moderno */
    font-weight: bold;
    font-size: 0.8rem; /* text-lg */
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    border-radius: 12px; /* Bordes redondeados */
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid;
    background-color: white;
    cursor: pointer;
    
}

.btn-outline-index {
    color: #10B981; /* Verde */
    font-weight: bold;
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    border-radius: 12px; /* Bordes redondeados */
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid;
    background-color: white;
    cursor: pointer;
    padding: 10px 20px; /*  botones + grandes */
    font-size: 18px; /* Aumenta el tamaño del texto */
    text-transform: uppercase; /* mayúsculas */
    width: 100%; 
    max-width: 400px; 
    margin: 10px 0; 
    text-align: center; 
    transition: all 0.3s ease; /* Transición hover y focus */

}


/* Botón Solicitar Factura */
.btn-outline-solicitar {
    background-color: white; /* Color de fondo */
    border-color: #34D399; /* Color del borde */
    border-width: 3px; /* Ancho del borde */
    
}

.btn-outline-solicitar:hover {
    background-color: #10B981; /* Hover: color más oscuro */
    border-color: #10B981; /* Hover: borde más oscuro */
    color:white;
}

.btn-outline-solicitar:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.5); /* Focus: borde en color más claro */
}


/* Botón  Facturar_Ticket  */
.btn-outline-factura {
    background-color: white; /* Color de fondo */
    border-color: #34D399; /* Color del borde */
    border-width: 3px; /* Ancho del borde */
}

.btn-outline-factura:hover {
    background-color: #10B981; /* Hover: color más oscuro */
    border-color: #10B981; /* Hover: borde más oscuro */
    color:white;
}

.btn-outline-factura:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.5); /* Focus: borde en color más claro */
}




/* Botón Preguntas Frecuentes  */
.btn-outline-preguntas {
    background-color: white; /* Color de fondo */
    border-color: #34D399; /* Color del borde */
    border-width: 3px; /* Ancho del borde */
}

.btn-outline-preguntas:hover {
    background-color: #10B981; /* Hover: color más oscuro */
    border-color: #10B981; /* Hover: borde más oscuro */
    color:white;
}

.btn-outline-preguntas:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* Focus: borde en color más claro */
}

/* estilos botón inicio */

.btn-inicio{
    color: #10B981; /* Verde moderno */
    font-weight: bold;
    font-size: 0.8rem; /* text-lg */
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    border-radius: 12px; /* Bordes redondeados */
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid;
    background-color: white;
    cursor: pointer;
}


.btn-inicio {
    background-color: white; /* Color de fondo */
    border-color: #34D399; /* Color del borde */
    border-width: 3px; /* Ancho del borde */
}

.btn-inicio:hover {
    background-color: #10B981; /* Hover: color más oscuro */
    border-color: #10B981; /* Hover: borde más oscuro */
    color:white;
}

.btn-inicio:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* Focus: borde en color más claro */
}

/* boton nueva factura */
.btn-enviar-factura{

    color: #10B981; /* Verde moderno */
    font-weight: bold;
    font-size: 0.8rem; /* text-lg */
    padding: 0.75rem 1.5rem; /* py-3 px-6 */  
    border-radius: 12px; /* Bordes redondeados */
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid;
    background-color: white;
    cursor: pointer;
}


.btn-enviar-factura {
    background-color: white; /* Color de fondo */
    border-color: #10B981; /* Color del borde */
    border-width: 3px; /* Ancho del borde */
}

.btn-enviar-factura:hover {
    background-color: #34D399; /* Hover: color más oscuro */
    border-color: #10B981; /* Hover: borde más oscuro */
    color:white;
}

.btn-enviar-factura:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* Focus: borde en color más claro */
}

/* estilos del header */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    height: 40px;
}

.menu {
    margin-right: 20px;
}

.menu-button {
    background-color: #2bc4b6;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.search-bar input {
    width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    display:flex;
    align-items: center;
    gap: 5px;
}

.user-actions a:hover {
    color: #000;
}

/*  header */

.custom-confirm-button {
    background-color: #fff;
    border: 3px solid #34D399;
    color: #34D399;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-confirm-button:hover {
    background-color: #10B981;
    border-color: #10B981;
    color:white; 
}

.custom-confirm-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #10B981;
}