/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #000000; /* Black */
  color: #FFFFFF; /* Bright White */
  margin: 0;
  padding: 0;
}

/* Logo Placement */
.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.logo-container img, .logo {
  max-width: 200px;
  height: auto;
}

/* Responsive Logo Adjustments */
@media screen and (max-width: 768px) {
  .logo-container {
    top: 10px;
    left: 10px;
  }
  .logo-container img {
    max-width: 120px; /* Smaller on mobile */
  }
}

/* Login Page Logo */
#login-logo {
  display: block;
  margin: 0 auto;
  max-width: 150px;
  height: auto;
}

/* Page Titles */
.page-title {
  text-align: center;
  margin-top: 100px; /* Reduced margin for smaller screens */
  font-size: 2em;
  color: #FFFFFF;
}

/* Responsive Title Adjustments */
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 1.5em; /* Smaller title on mobile */
    margin-top: 80px;
  }
}

/* Form Styling */
form {
  margin: 20px auto;
  width: 90%;
  max-width: 1000px;
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
}

/* Responsive Form Adjustments */
@media screen and (max-width: 768px) {
  form {
    width: 95%;
    padding: 15px;
  }
}

/* Input & Textarea */
input,
textarea {
  width: 100%; /* Full width */
  max-width: 1000px;
  padding: 10px;
  font-size: 16px;
  margin: 10px 0;
  border: 1px solid #00643c;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #000000;
}

input::placeholder,
textarea::placeholder {
  color: #555555;
}

/* Responsive Input Fields */
@media screen and (max-width: 768px) {
  input, textarea {
    font-size: 14px;
    padding: 8px;
  }
}

/* Buttons */
button,
a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #00643c;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Button Hover */
button:hover,
a:hover {
  background-color: #004d33;
}

/* Responsive Buttons */
@media screen and (max-width: 768px) {
  button, a {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* Button Group Alignment */
.button-group-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centered on mobile */
  gap: 10px;
  margin-top: 10px;
}

.complaints-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything */
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.complaints-title {
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto; /* Forces centering */
}

.button-container {
    display: flex;
    justify-content: center; /* Ensures buttons are centered */
    width: 100%;
    margin-top: 10px;
}

.button-container a {
    display: inline-block;
    text-align: center;
    width: auto;
}

/* Responsive Button Alignment */
@media screen and (max-width: 768px) {
  .button-group-inline {
    flex-direction: column;
    align-items: center;
  }
}

/* Results Section */
.results-container {
  display: none;
  margin-top: 20px;
}

.results-container.visible {
  display: block;
}

/* Disclaimer Text */
.disclaimer {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
}

/* Responsive Disclaimer */
@media screen and (max-width: 768px) {
  .disclaimer {
    font-size: 12px;
  }
}

/* Error Message Styling */
.error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
}

/* --- Additional Responsive Layouts --- */

/* Flexbox Layout for Centered Content */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Responsive Grid Example */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

/* Mobile-Friendly Grid */
@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}

.section {
    display: block !important;
    text-align: center !important;
}


