/* Completar el archivo CSS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background-color: #005177;
}

.error-message {
    color: #d63638;
    padding: 10px;
    background-color: #ffeeee;
    border-left: 4px solid #d63638;
    margin-bottom: 20px;
}

.success-message {
    color: #00a32a;
    padding: 10px;
    background-color: #eeffee;
    border-left: 4px solid #00a32a;
    margin-bottom: 20px;
}

/* Estilos para las pestañas */
.boletas-tabs .tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ddd;
}

.boletas-tabs .tabs-nav li {
    margin: 0;
    padding: 0;
}

.boletas-tabs .tabs-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.boletas-tabs .tabs-nav li.active a {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.boletas-tabs .tab-pane {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.boletas-tabs .tab-pane.active {
    display: block;
}

/* Estilos para las tablas */
.boletas-table {
    width: 100%;
    border-collapse: collapse;
}

.boletas-table th,
.boletas-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.boletas-table th {
    background-color: #f1f1f1;
}

/* Estilos para la boleta creada */
#boleta-creada {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.qr-code {
    text-align: center;
    margin: 20px 0;
}

.qr-code img {
    max-width: 200px;
}

