.table-panitera {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table-panitera th,
td {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 5px;
}

.table-panitera th {
  background-color: #f2f2f2;
}

.table-panitera td a {
  display: block;
  text-decoration: none;
  color: #333;
}

.check-icon {
  color: #4CAF50;
}

.times-icon {
  color: #FF0000;
}

.filter-container {
  text-align: left;
  margin-bottom: 20px;
}

/* Style for the filter label */
.filter-container label {
  font-weight: bold;
  margin-left: 10px;
}

/* Style for the filter dropdown */
#tahun {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#satkerLipa {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}

.loading-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
