:root {
  --primary-color: #5B8590;      /* Main Blue */
  --secondary-color: #92A25F;    /* Main Green */
  --tertiary-color: #9DC2C6;     /* Tertiary Blue */
  --dark-grey: #171819;          /* Dark Grey */
}

@font-face {
  font-family: 'DM_Sans';
  src: url('/static/fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable weight range from 100 to 900 */
  font-style: normal;
}

body {
  background: #fafafa;
  color: var(--dark-grey);
  margin-top: 9rem;
  font-family: 'DM_Sans', sans-serif;
  font-weight: 400; /* Regular weight for body text */
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-grey);
  font-family: 'DM_Sans', sans-serif;
  font-weight: 700; /* Bold weight for headings */
  letter-spacing: .11em;
  line-height: 1.3em;
}

p {
  color: var(--dark-grey);
  font-family: 'DM_Sans', sans-serif;
  font-weight: 400; /* Regular weight for body text */
  letter-spacing: .11em;
  line-height: 1.2em;
}

/* Other existing styles */
.italic-text {
  font-style: italic;
}

a.nav-item.nav-link {
  color: #5B8590;
}
a.h6 {
  color: #5B8590;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.2em;
}

.bg-steel {
  background-color: #FFFFFF;
  color: #5B8590;
}

/* Button styles */
.btn {
  font-size: 12px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 0.7em 1.5em;
  background-color: #fafafa;
}

/* Primary button styles */
.btn-primary {
  background-color: #5B8590 !important;
  border: 2px solid #5B8590 !important;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #FFFFFF !important;
  color: #5B8590 !important;
}

.btn-primary:active{
  padding: 0.5em 1.25em;
  border: 2px solid #5B8590 !important;
  color: #5B8590 !important;
  background-color: #FFFFFF !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-outline-primary{
  padding: 0.5em 1.25em;
  border: 2px solid #5B8590 !important;
  color: #5B8590;
}

.btn-outline-primary:hover{
  padding: 0.5em 1.25em;
  background-color: #5B8590 ;
  border: 2px solid #5B8590 !important;
  color: #FFFFFF;
}

.btn-outline-primary:active{
  padding: 0.5em 1.25em;
  background-color: #5B8590 !important;
  border: 2px solid #5B8590 !important;
  color: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
}

.btn-outline-info{
  padding: 0.5em 1.25em;
  border: 2px solid #9DC2C6 !important;
  color: #9DC2C6;
}

.btn-outline-info:hover{
  padding: 0.5em 1.25em;
  background-color: #9DC2C6 ;
  border: 2px solid #9DC2C6 !important;
  color: #FFFFFF;
}

.btn-outline-info:active{
  padding: 0.5em 1.25em;
  background-color: #9DC2C6 !important;
  border: 2px solid #9DC2C6 !important;
  color: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
}

.btn-outline-danger{
  padding: 0.5em 1.25em;
  border: 2px solid #ED1C24 !important;
  color: #ED1C24;
}

.btn-outline-danger:hover{
  padding: 0.5em 1.25em;
  background-color: #ED1C24 ;
  border: 2px solid #ED1C24 !important;
  color: #FFFFFF;
}

.btn-outline-danger:active{
  padding: 0.5em 1.25em;
  background-color: #ED1C24 !important;
  border: 2px solid #ED1C24 !important;
  color: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
}
.btn-outline-success{
  padding: 0.5em 1.25em;
  border: 2px solid #047593 !important;
  color: #047593;
}

.btn-outline-success:hover{
  padding: 0.5em 1.25em;
  background-color: #047593 ;
  border: 2px solid #047593 !important;
  color: #FFFFFF;
}
.btn-outline-success:active{
  padding: 0.5em 1.25em;
  background-color: #047593 !important;
  border: 2px solid #047593 !important;
  color: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
}

.filter-row {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.filter-row .form-group {
  margin-bottom: 10px;
}

.remove-filter-btn {
  width: 100%;
  color: red;
}
.row div.col-md-2{
  position: fixed;
}

.card-header .btn {
  width: 100%;
  text-align: left;
}

.card-header {
  padding: 0;
}

.site-header .navbar-nav{
  padding: 2em .1em;
}
.site-header .navbar-nav .nav-link {
  color: #5B8590;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.site-header .navbar-nav .nav-link:hover {
  color: #92A25F;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}
thead{
  color: var(--dark-grey);
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.nav-img {
  max-width: 216px;
}

.form-control{
  width: 100%;
  padding: 8px;
  margin: 6px 0 4px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  font-family: 'DM_Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  box-sizing: border-box;
  border-radius: 2px;
}

.form-control:active, .form-control:focus{
  border: 2px solid #5B8590 !important;
  outline: none !important;
  box-shadow: none !important;
}

.footer-img {
  max-width: 180px;
}


.checkbox-container {
  max-height: 100px;
  overflow-y: auto;
  padding-right: 10px;
  border: 1px solid #ddd;
  margin-top: 5px;
}

.checkbox-group label {
  display: block;
  margin-bottom: 5px;
}

.toast {
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}