/* Navbar dengan Logo OJK */
.navbar {
    background: white;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-ojk {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #0c4a6e;
    padding: 8px 15px;
    border-radius: 10px;
}
.logo-ojk-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-ojk-text .line-1 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}
.logo-ojk-text .line-2 {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 3px;
}
.logo-ojk-text .line-3 {
    font-size: 10px;
    font-weight: 500;
    color: #93c5fd;
    letter-spacing: 1px;
}
.logo-divider {
    width: 2px;
    height: 40px;
    background: #cbd5e1;
    margin: 0 5px;
}
.logo-title {
    display: flex;
    flex-direction: column;
}
.logo-title .main-title {
    font-size: 16px;
    font-weight: 700;
    color: #0c4a6e;
}
.logo-title .sub-title {
    font-size: 11px;
    color: #6c757d;
}
.navbar-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.navbar-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar-menu a:hover {
    color: #3498db;
}
.btn-login-nav {
    background: #3498db;
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
}
.btn-login-nav:hover {
    background: #2980b9;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    .navbar-brand {
        flex-direction: column;
    }
    .logo-divider {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-warning {
    background: #e67e22;
}

.btn-warning:hover {
    background: #d35400;
}

.btn-success {
    background: #27ae60;
}

.btn-success:hover {
    background: #229954;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

table th {
    background: #f8fafc;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending { background: #fef3c7; color: #d97706; }
.status-process { background: #dbeafe; color: #2563eb; }
.status-resolved { background: #d1fae5; color: #059669; }
.status-rejected { background: #fee2e2; color: #dc2626; }

.level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.level-low { background: #e0f2fe; color: #0284c7; }
.level-mid { background: #fef9c3; color: #ca8a04; }
.level-urgent { background: #fecaca; color: #dc2626; }

.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: #2c3e50;
    text-decoration: none;
    margin-left: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .container {
        margin: 20px;
        padding: 0;
    }
}