/* Reset dan dasar */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f7fa;
  color: #333;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
h1, h2 {
  color: #0d6efd;
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}
select, input[type=text], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  font-size: 1rem;
  resize: vertical;
}
select:focus, input[type=text]:focus, textarea:focus {
  border-color: #0d6efd;
  outline: none;
  background-color: #eef5ff;
}
button {
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  padding: 12px 25px;
  transition: background-color 0.3s ease;
}
.btn-primary {
  background-color: #0d6efd;
  color: white;
  margin-top: 15px;
  display: inline-block;
}
.btn-primary:hover {
  background-color: #084cd9;
}
.btn-secondary {
  background-color: #6c757d;
  color: white;
  display: inline-block;
}
.btn-secondary:hover {
  background-color: #565e64;
}
.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
}
.form-filter {
  margin-bottom: 25px;
}
.table-data {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.table-data th, .table-data td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.table-data th {
  background-color: #0d6efd;
  color: white;
}
.table-data tr:nth-child(even) {
  background-color: #f9f9f9;
}
.no-data {
  text-align: center;
  font-style: italic;
  color: #888;
}
.petugas-section {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 600px) {
  .table-data th, .table-data td {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
  button {
    width: 100%;
    box-sizing: border-box;
  }
}
