#winjet-app {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wj-header {
    background: #ffc107; /* Amarillo Test */
    color: #333;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.winjet-step {
    padding: 20px;
}

/* Formularios */
#winjet-app label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #555;
}

#winjet-app input[type="date"], 
#winjet-app select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Botones Generales */
.wj-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.wj-btn-primary { background: #0073aa; color: white; }
.wj-btn-secondary { background: #6c757d; color: white; }
.wj-btn-success { background: #28a745; color: white; }
.wj-btn-small { padding: 5px 15px; font-size: 14px; margin-top: 0; width: auto; }

/* Lista de Horarios */
.wj-hora-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

/* Lista de Boletos */
.wj-boleto-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.wj-boleto-ctrl {
    display: flex;
    align-items: center;
}

.wj-boleto-ctrl button {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
}

.wj-boleto-ctrl input {
    width: 40px !important;
    text-align: center;
    margin: 0 5px !important;
    border: none !important;
    font-weight: bold;
}

/* Mensajes */
.wj-loading { color: #666; font-style: italic; text-align: center; padding: 20px; }
.wj-error { color: red; text-align: center; padding: 20px; }
.wj-resumen { background: #e9ecef; padding: 10px; border-radius: 4px; margin-bottom: 15px; text-align: center; }
.wj-acciones { display: flex; gap: 10px; }


#winjet-app {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wj-header {
    background: #ffc107; 
    color: #333;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.winjet-step { padding: 20px; }

#winjet-app label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #555;
}

#winjet-app input[type="date"], 
#winjet-app input[type="text"], 
#winjet-app input[type="email"], 
#winjet-app select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.wj-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    color: white;
}

.wj-btn-primary { background: #0073aa; }
.wj-btn-secondary { background: #6c757d; }
.wj-btn-success { background: #28a745; }
.wj-btn-small { padding: 5px 15px; font-size: 14px; margin-top: 0; width: auto; background: #0073aa; }

.wj-hora-item, .wj-boleto-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px; border-bottom: 1px solid #eee;
}

.wj-boleto-row button {
    width: 30px; height: 30px; cursor: pointer;
}

.wj-loading { color: #666; font-style: italic; text-align: center; }
.wj-error { color: red; text-align: center; padding: 10px; word-wrap: break-word;}