/* Uyanis Points Frontend Styles */

/* Saldo en Mi Cuenta */
.uyanis-user-balance {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
    padding: 30px;
    background: #f0f9ff;
    border: 1px solid #cceeff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Tabla de Historial */
.uyanis-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.uyanis-history-table th,
.uyanis-history-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.uyanis-history-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.uyanis-history-table tr:hover {
    background-color: #fcfcfc;
}

/* Tipos de Transacción */
.uyanis-transaction-type-credit {
    color: #27ae60;
    font-weight: 700;
    background: #eafaf1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.uyanis-transaction-type-debit {
    color: #c0392b;
    font-weight: 700;
    background: #fdedec;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Badge en Productos */
.uyanis-points-price {
    display: inline-block;
    color: #8e44ad;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
}