/* Table Styling */
table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  padding:20px;
}

table th, table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 1rem; /* Ensuring readability */
}

table th {
  background-color: #003366; /* Blue background for headers */
  color: white;
  font-weight: 600;
}

table td {
  font-size: 1rem;
  color: #333;
}

table .badge {
  font-size: 0.9rem;
}


/* Button Styling */
.btn-info {
  padding: 5px 15px;
  font-size: 1rem; /* Ensure button text size is readable */
  color: white;
  background-color: #0071bc; /* Consistent blue button color */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-info:hover {
  background-color: #005a8d; /* Darker blue on hover */
}

/* Badge Styling */
.badge {
  font-size: 1rem; /* Increase font size for better readability */
  padding: 8px 16px; /* Add some padding to make it more prominent */
  border-radius: 12px; /* Rounded corners for the badge */
  font-weight: 600; /* Bold text for emphasis */
  text-transform: uppercase; /* Uppercase text for consistency */
}

/* Specific color for different statuses */
.bg-danger {
  background-color: #dc3545; /* Red background for "Ditolak" */
  color: white;
}

.bg-warning {
  background-color: #ffc107; /* Yellow for "In Progress" */
  color: black;
}

.bg-success {
  background-color: #28a745; /* Green for "Approved" */
  color: white;
}

/* Adding some hover effects for interactivity */
.badge:hover {
  opacity: 0.8; /* Slightly transparent on hover */
  cursor: pointer;
}