/* Base background and text */
body, html {
  background-color: #0f1a0f !important; /* deep green-black */
  color: #d4fcd2; /* light minty green text */
}
  
  /* Navbar */
  .navbar {
    background-color: #143d14 !important;
  }
  
  .navbar .nav-link,
  .navbar .navbar-brand {
    color: #b0f5a2 !important;
  }
  
  .navbar .nav-link:hover,
  .navbar .dropdown-item:hover {
    background-color: #265a26 !important;
    color: #ffffff !important;
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    background-color: #1c2e1c;
    border: none;
  }
  
  .dropdown-item {
    color: #c6f5c0;
  }
  
  /* Buttons */
  .btn {
    background-color: #265a26;
    color: white;
    border: none;
  }
  
  .btn:hover {
    background-color: #38a238;
  }
  
  /* Carousel captions */
  .carousel-caption {
    background-color: rgba(20, 50, 20, 0.6);
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  /* Forms */
  .form-control {
    background-color: #1f301f;
    color: #e5ffe4;
    border: 1px solid #265a26;
  }
  
  .form-control::placeholder {
    color: #9abf9a;
  }
  
  .btn-outline-success {
    color: #b9fcb3;
    border-color: #38a238;
  }
  
  .btn-outline-success:hover {
    background-color: #38a238;
    color: white;
  }
  
  /* Links */
  a {
    color: #a0f2a0;
  }
  
  a:hover {
    color: #60e060;
  }
  


  /* General form style */
form label {
  font-weight: 500;
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="date"],
form textarea,
form input[type="checkbox"] {
  margin-bottom: 15px;
}

form textarea {
  resize: none;
}

h4, h5 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  margin: 5px 0 10px;
  font-size: 1rem;
}

/* Section Background */
section {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* Input fields */
form .form-control {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 10px;
}

/* Checkbox spacing */
.form-check {
  margin-bottom: 10px;
}

/* Submit button */
form button[type="submit"] {
  background-color: #28a745;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #218838;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .form-label {
      font-size: 0.95rem;
  }

  form button[type="submit"] {
      width: 100%;
  }
}
