body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1, h2 {
    color: #0056b3;
}
.navbar {
    background-color: #007bff;
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px 8px 0 0;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}
.navbar a:hover {
    background-color: #0056b3;
}
form {
    margin-top: 20px;
}
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
form input[type="text"],
form input[type="date"],
form textarea,
form select {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
form button {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
form button:hover {
    background-color: #218838;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
table th {
    background-color: #f2f2f2;
}
.action-button {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-right: 5px;
}
.action-button:hover {
    background-color: #0056b3;
}
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.9em;
}
.status-tulis { background-color: #6c757d; } /* Abu-abu */
.status-verifikasi { background-color: #ffc107; color: #333;} /* Kuning */
.status-tindak_lanjut { background-color: #17a2b8; } /* Biru muda */
.status-tanggapan { background-color: #dc3545; } /* Merah */
.status-selesai { background-color: #28a745; } /* Hijau */

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}
.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.report-detail p {
    margin-bottom: 10px;
}

.timeline {
    border-left: 2px solid #ccc;
    margin-left: 20px;
    padding-left: 20px;
    margin-top: 20px;
}
.timeline-item {
    position: relative;
    margin-bottom: 15px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #007bff;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #007bff;
}
.timeline-item.active::before {
    background-color: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}
.timeline-item h4 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #0056b3;
}
.timeline-item small {
    color: #666;
    display: block;
}
.timeline-item p {
    margin-top: 5px;
    font-size: 0.95em;
}
.due-date {
    color: #dc3545;
    font-weight: bold;
}
.overdue {
    color: red;
    font-weight: bold;
}