/* Gaya Umum */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  margin: 0;
  padding: 20px;
}

h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
}

/* Kotak Kontainer (Card) */
.box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.box h3 {
  margin-top: 0;
  color: #2980b9;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 10px;
}

/* Form Input */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
}

input[type='text'],
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  resize: vertical;
  height: 80px;
}

button {
  padding: 10px 15px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

button:hover {
  background-color: #219653;
}

/* Tabel Data */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

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

th {
  background-color: #34495e;
  color: white;
}

tr:hover {
  background-color: #f9f9f9;
}

/* Tombol Aksi di Tabel */
table button {
  padding: 5px 10px;
  font-size: 12px;
  margin-right: 5px;
}

.btn-kerja {
  background-color: #2980b9;
}
.btn-selesai {
  background-color: #f39c12;
}
.btn-bayar {
  background-color: #27ae60;
}

/* Box Laporan Khusus */
.report-box {
  background-color: #d4edda;
  border-left: 5px solid #28a745;
}

/* Badge Teks Lunas Hijau */
.badge-lunas {
  background-color: #2ecc71;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
}

/* Warna tombol aksi */
.btn-kerja {
  background-color: #3498db;
  color: white;
}
.btn-kerja:hover {
  background-color: #2980b9;
}

.btn-selesai {
  background-color: #e67e22;
  color: white;
}
.btn-selesai:hover {
  background-color: #d35400;
}

.btn-bayar {
  background-color: #2ecc71;
  color: white;
}
.btn-bayar:hover {
  background-color: #27ae60;
}

/* Variasi Warna Status Servis */
.status-antri {
  color: #e74c3c;
  font-weight: bold;
}
.status-dikerjakan {
  color: #f1c40f;
  font-weight: bold;
}
.status-selesai {
  color: #2ecc71;
  font-weight: bold;
}
