/* assets/css/optik.css */
:root {
    --optik-primary: #2c3e50;
    --optik-secondary: #3498db;
    --optik-accent: #e74c3c;
    --optik-bg: #f8f9fa;
}

body {
    background-color: var(--optik-bg);
    font-family: 'Inter', sans-serif;
}

.card-stat {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.bg-light-blue { background-color: #e3f2fd; color: #1976d2; }
.bg-light-green { background-color: #e8f5e9; color: #2e7d32; }
.bg-light-orange { background-color: #fff3e0; color: #ef6c00; }
.bg-light-red { background-color: #ffebee; color: #c62828; }

.btn-quick-action {
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #dee2e6;
    background: white;
    transition: all 0.3s;
}

.btn-quick-action:hover {
    background: var(--optik-secondary);
    color: white;
    border-color: var(--optik-secondary);
}

/* assets/css/optik.css */

/* Palette Baru: Vibrant Optic */
:root {
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-green: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    --gradient-orange: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --gradient-red: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    --gradient-purple: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.dashboard-container {
    padding: 2rem;
    background: #f4f7f6;
    min-height: 100vh;
}

.card-vibrant {
    border: none;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-vibrant:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-vibrant .icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Quick Action Circle */
.action-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    color: #764ba2;
}

.action-item:hover .action-circle {
    background: #764ba2;
    color: white;
    transform: scale(1.1);
}

.action-item {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.85rem;
}