/* General body and container styling */
body {
  background-color: #a4afdf;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.navbar {
  background-color: #004080 !important; /* Dark blue */
  border-bottom: 3px solid #007bff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-button {
  display: inline-block;
  padding: 6px 14px;
  margin-right: 15px;   /* spacing between buttons horizontally */
  margin-bottom: 8px;   /* spacing when stacked on mobile */
  border: 1px solid #ffffff;       /* Blue border */
  border-radius: 5px;              /* Rounded corners */
  color: #ffffff;                  /* Text color */
  background-color: transparent;   /* Transparent background */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #007bff;       /* Fill background on hover */
  color: white;                    /* Change text color on hover */
}


.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 450px;
  margin: 20px auto;
  transition: all 0.3s ease-in-out;
}

.complaint-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 0.95rem;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.complaint-table th {
  background-color: #151617;
  color: #ffffff;
  padding: 12px;
  text-align: center;
  font-weight: 600;
}

.complaint-table td {
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}

.complaint-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.complaint-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.complaint-form .form-label {
  font-weight: 500;
  color: #495057;
}

.navbar-toggler {
  border-color: white;
}
