/* SBI Yono Theme Colors */
:root {
    --yono-gradient: linear-gradient(135deg, #662d91 0%, #912d7d 100%);
    --sbi-secondary: #fce4ec;
    --text-dark: #2d3436;
    --bg-light: #f0f2f5;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Sidebar Styling - Clean White with Yono Accents */
.sidebar {
    position: fixed;
    height: 100vh;
    width: 260px;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 4px 0 10px rgba(0,0,0,0.05);
    overflow-y: auto;
}

.sidebar h2 {
    background: var(--yono-gradient);
    color: var(--white);
    padding: 25px 15px;
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    min-height: 100vh;
    padding: 30px;
    box-sizing: border-box;
}

.content-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 15px; /* Rounded corners like modern apps */
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

/* Table Design - Minimalist & Clean */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* Rows space out */
    margin-top: 15px;
}

th {
    background-color: transparent;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 15px;
}

td {
    background: var(--white);
    padding: 15px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

tr:hover td {
    background-color: #fafafa;
}

/* Buttons - Rounded & Gradient */
.btn {
    padding: 10px 20px;
    border-radius: 25px; /* Pill shape */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-active { 
    background: var(--yono-gradient); 
    color: white; 
    box-shadow: 0 4px 15px rgba(102, 45, 145, 0.2);
}
.btn-active:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 45, 145, 0.3);
}

.btn-block { 
    background: #ff4757; 
    color: white; 
}

.btn-edit { 
    background: var(--sbi-secondary); 
    color: #662d91; 
}

/* Status Badges */
.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge-success { background: #e3fcef; color: #00a854; }
.badge-danger { background: #ffeef0; color: #f53152; }

/* Dashboard Cards (Stats) */
.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #edf2f7;
    transition: 0.3s;
}
.stat-card:hover {
    border-color: #662d91;
}