.login-box{
    background: white;
    max-width: 500px;
    width: 450px;
    border: 1px solid darkgrey;
    border-radius: 10px;
  }
 
  .vertical-center{
    min-height: 95%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 95vh; /* These two lines are counted as one :-)       */
  
    display: flex;
    align-items: center;
  }
 
  .cr-bg-blue{
    border-color: #15a7e4 !important;
    background-color: #15a7e4 !important;
  }
 
  .footer-bar{
    min-height: 5%;
    min-height: 5vh;
    min-width: 100%;
    min-width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    background: #8c8c8c;
  }
  .footer-content{
    position: absolute;
    right: 0;
  }
 
  
  .cr-orange{
    color: #d4a67c !important;
  }
  
  .cr-blue{
    color: #15a7e4 !important;
  }

  body {
      background-color: #f8f9fa;
  }
  .navbar-brand img {
      max-width: 120px;
      height: auto;
  }
  .sidebar-nav a {
      color: #d4a67c;
      text-decoration: none;
      display: block;
      padding: 0.5rem 0;
  }
  .sidebar-nav a:hover {
      text-decoration: underline;
  }
  .form-section {
      background-color: #f0f0f0;
      border: 1px solid #ddd;
      border-radius: 0.375rem;
  }
  .search-title {
      color: #d4a67c;
      font-weight: bold;
      font-size: 1.25rem;
  }

/* Buttons */
.btn-base {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #15a7e4;
  color: white;
  border-color: #15a7e4;
}

.btn-accent {
  background-color: #d4a67c;
  color: white;
  border-color: #d4a67c;
}

.btn-primary:hover {
  background-color: #128cc0;
  color: white;
}

.btn-accent:hover {
  background-color: #b8885c;
  color: white;
}

.btn-grey {
    background-color: #9b9b9b !important;
    border-color: #9b9b9b !important;
    color: white !important;
}

.btn-grey:hover {
    background-color: #b6b6b6 !important;
    border-color: #b6b6b6 !important;
    color: white !important;
}