/* PatrimonioSmart v2 — mismo patron que lacarihuelapescaderias.com */

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f0f2f5;
    margin: 0;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s;
}
.card-link {
    text-decoration: none;
    color: inherit;
}
.card-link .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}

/* Semaforos */
.sem {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.sem-green  { background: #198754; }
.sem-yellow { background: #ffc107; }
.sem-red    { background: #dc3545; }

/* Tabla compacta */
.t-sm td, .t-sm th {
    padding: 0.3rem 0.5rem;
    font-size: 0.84rem;
}

/* Login */
.login-wrap {
    min-height: 100vh;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2FA input */
.otp-input {
    letter-spacing: 0.5em;
    font-size: 1.5rem;
    text-align: center;
    font-family: monospace;
}

/* PnL colores */
.pnl-pos { color: #198754; }
.pnl-neg { color: #dc3545; }
