body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; margin: 0; padding: 0; display: flex; background-color: #f4f7f6; min-height: 100vh; }
*, *::before, *::after { box-sizing: border-box; }

/* Sidebar */
.sidebar { width: 260px; background: white; padding: 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; z-index: 10; }
.logo-area { margin-bottom: 30px; border-bottom: 2px solid #006633; padding-bottom: 15px; }
.logo-area strong { color: #006633; font-size: 22px; display: block; line-height: 1.2; }
.logo-area small { color: #666; font-size: 14px; }
.menu-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; overflow-y: auto; }
.menu-list li { margin-bottom: 10px; }
.menu-list a { text-decoration: none; color: #444; font-size: 15px; display: block; padding: 10px; border-radius: 6px; transition: 0.2s; border-left: 3px solid transparent; }
.menu-list a:hover { color: #006633; font-weight: bold; background-color: #e8f5e9; border-left: 3px solid #006633; }
.admin-link { margin-top: auto; padding-top: 20px; border-top: 1px solid #eee; text-align: center; }
.admin-link a { text-decoration: none; color: #999; font-size: 13px; }
.admin-link a:hover { color: #555; }

/* Konten Utama */
.main-content { flex: 1; padding: 40px; overflow-y: auto; max-width: 1000px; }
.hero-section { background-color: #006633; color: white; padding: 40px; border-radius: 12px; margin-bottom: 40px; text-align: center; box-shadow: 0 4px 15px rgba(0,102,51,0.2); }
.hero-section h2 { margin-top: 0; font-size: 28px; }

/* Formulir Pelaporan */
.form-section { background: white; padding: 35px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-section h3 { margin-top: 0; color: #333; border-bottom: 1px solid #eee; padding-bottom: 15px; font-size: 22px; }
input[type="text"], input[type="password"], textarea { width: 100%; padding: 14px; margin: 10px 0 20px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; font-size: 15px; background: #fdfdfd; transition: border 0.3s; }
input[type="text"]:focus, input[type="password"]:focus, textarea:focus { border-color: #006633; outline: none; background: #fff; }
textarea { height: 180px; resize: vertical; }
.btn-lapor { width: 100%; padding: 16px; background-color: #d32f2f; color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 16px; font-weight: bold; transition: background 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-lapor:hover { background-color: #b71c1c; }

/* Area Konten Dinamis (CMS) */
.content-box { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.content-title { color: #006633; border-bottom: 2px solid #eee; padding-bottom: 15px; margin-top: 0; font-size: 26px; }
.content-body { line-height: 1.8; color: #333; overflow-wrap: anywhere; font-size: 16px; }
.content-body img, .content-body iframe { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
