/* style.css - SOW branding overrides (Orange/Red theme) */
body {
  background-color: #ffffff;
  font-family: 'Inter', 'Roboto', sans-serif;
  color: #212529;
}

html, body {
  height: 100%;
}

.navbar {
  background-color: #FF671F !important; /* Primary orange */
}
.navbar .nav-link,
.navbar-brand {
  color: #fff !important;
}
.navbar .nav-link:hover {
  color: #ED1313 !important; /* Accent red */
}

.btn-primary, .btn-success {
  background-color: #FF671F;
  border-color: #FF671F;
}
.btn-primary:hover {
  background-color: #e05512;
  border-color: #e05512;
}

.btn-success {
  background-color: #FF671F; /* keep success green */
  border-color: #FF671F;
}
.btn-success:hover {
  background-color: #FF671F;
}

.card {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: none;
  border-radius: 0.75rem;
}
.card-title {
  color: #FF671F;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.alert-danger {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}




footer.footer {
  background-color: #fff;
  color: #6c757d;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

footer.footer hr {
  border-top: 1px solid #eee;
  margin-bottom: 10px;
}

.container.flex-grow-1 {
  padding-bottom: 2rem; /* some breathing room before footer */
}

.container h1, .container h2 {
  color: #FF671F !important;
}

/* small utility for muted text */
.text-muted-2 { color: #6c757d; }

.text-primary {color: #ED1313;}

.second-color {
    color: #fff;
    background: #ED1313;
    border-color: #ED1313;
}
.second-color:hover{
       color: #ED1313;
    background: #fff;
    border-color: #ED1313; 
}

.suggestion {
    border: solid 1px;
    padding: 10px;
    width: inherit;
}