/* Bootstrap Overrides - Green Theme */

/* Primary color overrides */
:root {
  --bs-primary: #2e7d32;
  --bs-primary-rgb: 46, 125, 50;
  --bs-primary-hover: #1b5e20;
  --bs-primary-active: #1b5e20;
}

/* Navbar specific overrides */
.navbar-dark {
  background-color: #2e7d32 !important;
}

.navbar.navbar-dark.bg-primary {
  background-color: #2e7d32 !important;
}

.navbar.bg-primary {
  background-color: #2e7d32 !important;
}

.navbar.navbar-dark {
  background-color: #2e7d32 !important;
}

.navbar {
  background-color: #2e7d32 !important;
}

.bg-primary {
  background-color: #2e7d32 !important;
}

.nav-link:hover {
  color: #e8f5e9 !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}

/* Background colors */
.bg-secondary {
  background-color: #66bb6a !important;
}

.bg-success {
  background-color: #43a047 !important;
}

.bg-info {
  background-color: #81c784 !important;
}

.bg-warning {
  background-color: #c8e6c9 !important;
}

.bg-danger {
  background-color: #e57373 !important; /* Keeping red for danger/errors */
}

.bg-light {
  background-color: #e8f5e9 !important;
}

.bg-dark {
  background-color: #1b5e20 !important;
}

/* Text colors */
.text-primary {
  color: #2e7d32 !important;
}

.text-secondary {
  color: #66bb6a !important;
}

.text-success {
  color: #43a047 !important;
}

.text-info {
  color: #81c784 !important;
}

.text-warning {
  color: #aed581 !important;
}

.text-danger {
  color: #e57373 !important; /* Keeping red for danger/errors */
}

.text-light {
  color: #f1f8e9 !important;
}

.text-dark {
  color: #1b5e20 !important;
}

/* Button colors */
.btn-primary {
  background-color: #2e7d32 !important;
  border-color: #2e7d32 !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #1b5e20 !important;
  border-color: #1b5e20 !important;
}

.btn-outline-primary {
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: #2e7d32 !important;
  color: white !important;
}

/* Link colors */
a {
  color: #2e7d32;
}

a:hover {
  color: #1b5e20;
}

/* Form controls */
.form-control:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* Border colors */
.border-primary {
  border-color: #2e7d32 !important;
}

/* Progress bars */
.progress-bar {
  background-color: #2e7d32;
}

/* Nav tabs/pills */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #2e7d32;
} 