/* Global UI & Typography styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* Sidebar Layout */
.sidebar {
    min-width: 260px;
    max-width: 260px;
    background-color: #051937;
    color: #ffffff;
    min-height: 100vh;
    transition: all 0.3s;
}

.sidebar-header {
    padding: 24px 20px;
    background-color: #031126;
    border-bottom: 1px solid #102a54;
    text-align: center;
}

.sidebar-header h6 {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.menu-title {
    padding: 15px 25px 5px 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 700;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sidebar-menu li a i {
    margin-right: 12px;
    width: 20px;
    font-size: 16px;
}

.sidebar-menu li a:hover, .sidebar-menu li.active a {
    background-color: #d4af37;
    color: #051937;
    font-weight: 600;
}

/* Main Panel Layout */
.main-panel {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Navbar */
.topbar {
    background-color: #031126;
    color: #ffffff;
    height: 70px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #d4af37;
}

.content-container {
    padding: 30px;
    flex: 1;
}

/* Metrics Dashboard Cards */
.metrics-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.metrics-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Colors standard Polri design pattern */
.bg-polri { background-color: #051937; }
.text-gold { color: #d4af37; }

/* Custom badges */
.badge-aktif { background-color: #e2fbf0; color: #10b981; }
.badge-nonaktif { background-color: #fef2f2; color: #ef4444; }