@import url('https://fonts.googleapis.com/css2?family=Afacad&display=swap');



body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #f88f26;
    color: #fff;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    margin-right: 50px;
}

h1 {
    margin: 0;
    font-size: 50px;
}



/* Agrega estos estilos al final del archivo */

.formulario {
    max-width: 600px ;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #f88f26;
    margin-bottom: 20px;
}

.campo {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="date"] {
    width: calc(100% - 20px);
}

input:focus {
    outline: none;
    border-color: #f88f26;
    box-shadow: 0 0 5px rgba(194, 147, 76, 0.5);
}

input[type="text"]::placeholder {
    color: #ccc;
}

input[type="text"]:focus::placeholder {
    color: transparent;
}

input[type="submit"] {
    background-color: #f88f26;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #f88f26;
}
/* Agrega estos estilos al final del archivo */

.buscar-ticket {
    text-align: center;
    margin-top: 20px;
}

.buscar-ticket-a {
    background-color: #f88f26;
    color: #fff;
    padding: 12px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.buscar-ticket-a:hover {
    background-color: #f88f26;
}



/* Agrega estos estilos al final del archivo */

.tabla-factura {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    border-bottom: 10px solid #ddd9d9; /* Nueva línea divisora */
    margin-bottom: 10px; /* Espacio después de la tabla */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #c3a376;
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}



.datos-cliente {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h2 {
    color: #c3a376;
    margin-bottom: 10px;
}

.subtitulo, .recordatorio {
    color: #666;
    margin-bottom: 15px;
}

.campo {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*background: url("arrow-down.png") no-repeat;*/
    background-position: right center;
    cursor: pointer;
}

input:focus, select:focus {
    outline: none;
    border-color: #a1885e;
    box-shadow: 0 0 5px rgba(194, 147, 76, 0.5);
}



/* Agrega estos estilos al final del archivo */

/* Reemplaza la regla existente con esta para el checkbox */

.campo1 {
    display: flex;
    font-size: 20px;

    margin-bottom: 15px;
}

.campo1 input[type="checkbox"] {
    margin-right: 2px;
    width: 20px;
}

.botones {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: #f88f26;
    color: #fff;
    padding: 12px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

button:hover {
    background-color: #a1885e;
}

.facturar-otro-ticket {
    background-color: #f88f26;
}

.facturar-otro-ticket:hover {
    background-color: #2980b9;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
}
