:root {
  --bg: #0d1117;
  --card: #161b22;
  --border: #30363d;
  --primary: #58a6ff;
  --text: #c9d1d9;
  --red: #f85149;
}

body {
  font-family: sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 20px;
}

.container {
  max-width: 500px;
  margin: auto;
}

h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  background: #010409;
  border: 1px solid var(--border);
  color: white;
  border-radius: 6px;
}

button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.btn-edit {
  width: auto;
  padding: 4px 10px;
  font-size: 11px;
  margin-left: 8px;
  background: #2c33e6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-edit:hover {
  background: #0f66df;
}

.user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.status-btn {
  font-size: 10px;
  padding: 3px 6px;
  margin-right: 5px;
  width: auto;
}

select {
  padding: 5px 8px;
  border-radius: 5px;
  background: #010409;
  color: white;
  border: 1px solid var(--border);
  font-size: 12px;
  cursor: pointer;
}

.btn-logout {
  width: auto;
  padding: 5px 12px;
  background: var(--red);
  font-size: 12px;
}

.hint {
  font-size: 11px;
  color: #8b949e;
  margin-top: 5px;
}

.report-item {
  background: #1e2632;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  position: relative;
}

.btn-del {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  color: var(--red);
  font-size: 18px;
  width: auto;
}

.badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
}

/* WARNA STATUS */
.badge.waiting {
  background: #3e2e05; /* oranye */
  color: #e3b341;
}

.badge.proses {
  background: #4a7ae1; /* biru */
  color: #cfe1ff;
}

.badge.done {
  background: #112e1a; /* hijau */
  color: #3fb950;
}

.WargaSpeak {
    width: 40%;
    margin-left: 30%;
    background: linear-gradient( 135deg, #6b16c0, #a55ff5);
}

.web {
    font-size: large;
    color: #010409;
}