/* estilos css*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    background-color: #f2f2f2;
}

.PAD {
    padding: 20px;
}

.Contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.datos input {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

.botones button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.botones button:hover {
    background-color: #333;
}

.checkbox {
    margin-right: 10px;
}

.Impresiones table {
    width: 100%;
    border-collapse: collapse;
}

.Impresiones th, .Impresiones td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
}

.Impresiones th {
    background-color: #000;
    color: #fff;
}

.Impresiones tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.Impresiones tr:hover {
    background-color: #ddd;
}

