/* Lovely Kedium ERP - core theme
   Primary Orange: #FFAA28 | White | Black | Light Gray */
:root {
    --lk-primary: #FFAA28;
    --lk-black: #1a1a1a;
    --lk-gray-light: #f5f5f7;
    --lk-white: #ffffff;
}

body {
    background-color: var(--lk-gray-light);
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.navbar-lk, .btn-lk-primary {
    background-color: var(--lk-primary) !important;
    color: var(--lk-black) !important;
    border: none;
}

.sidebar-lk {
    background-color: var(--lk-white);
    min-height: 100vh;
    border-right: 1px solid #eee;
}

.card-lk {
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: none;
}

.priority-critical { color: #dc3545; font-weight: 600; }
.priority-high      { color: #fd7e14; font-weight: 600; }
.priority-medium    { color: #ffc107; font-weight: 600; }
.priority-normal    { color: #28a745; font-weight: 600; }

/* Dark mode */
body.dark-mode {
    background-color: #121212;
    color: #eee;
}
body.dark-mode .sidebar-lk,
body.dark-mode .card-lk {
    background-color: #1e1e1e;
    color: #eee;
}
