/* Clara Gateway Dashboard — Custom Styles */

:root {
    --clara-primary: #4f46e5;
    --clara-primary-hover: #4338ca;
    --clara-accent: #06b6d4;
}

.btn-primary {
    background-color: var(--clara-primary);
    border-color: var(--clara-primary);
}
.btn-primary:hover {
    background-color: var(--clara-primary-hover);
    border-color: var(--clara-primary-hover);
}

.sidebar-brand .brand-text b {
    color: var(--clara-accent);
}

.small-box .inner h3 {
    font-weight: 700;
}

.card {
    border: none;
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
}

.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-status-active { background-color: #10b981; }
.badge-status-suspended { background-color: #ef4444; }
.badge-status-inactive { background-color: #6b7280; }

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
}

.auth-card {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.auth-card .card-header {
    background: var(--clara-primary);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

pre.json-display {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    max-height: 300px;
    overflow: auto;
}
