/* SIJAWARA Intense UI Core */
:root {
    --primary: #1d4ed8; /* Blue-700 */
    --primary-soft: #eff6ff;
    --accent: #4338ca; /* Indigo-700 */
    --bg-main: #F8FAFC;
    --card-border: #e2e8f0;
    --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: #0f172a;
}

/* Base Card Style */
.card-jawara {
    background: #ffffff;
    border: 2px solid var(--card-border);
    border-radius: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-jawara:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
}

/* Intense Input Fields */
.input-field {
    width: 100%;
    padding: 1.125rem 1.5rem;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1e293b;
}

.input-field:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.1);
}

.input-field::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Button Standard */
.btn-primary-jawara {
    background-color: var(--primary);
    color: white;
    font-weight: 900;
    border-radius: 1.5rem;
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.3);
    transition: all 0.3s active:scale-95;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.btn-primary-jawara:hover {
    background-color: #1e40af;
    box-shadow: 0 20px 30px -5px rgba(29, 78, 216, 0.4);
}

/* Table Standard */
.table-jawara thead th {
    background-color: #f8fafc;
    padding: 1.25rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    border-bottom: 2px solid #f1f5f9;
}

.table-jawara tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

.scrollbar-hide::-webkit-scrollbar { display: none; }
