#data-togel-wrapper {
  max-width: 100%;
  margin: 20px auto;
  font-family: system-ui, sans-serif;
  box-sizing: border-box;
}

.togel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.search-group {
  flex: 2;
}

.filter-group label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.filter-group select,
.filter-group input {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: border-color 0.2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: #0073aa;
  outline: none;
}

.togel-header {
  margin-bottom: 20px;
}

.togel-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.togel-header p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

#data-table-container {
  overflow-x: auto;
}

.togel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.togel-table thead {
  background-color: #f5f5f5;
}

.togel-table th,
.togel-table td {
  padding: 10px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.togel-table tr:nth-child(even) {
  background-color: #fafafa;
}

.togel-table tr:hover {
  background-color: #f1f1f1;
}

@media (max-width: 600px) {
  .togel-controls {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }
}
