/* base_generic.css */

.container-fluid {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #f8f9fa;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #dee2e6;
}

.sidebar-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.sidebar-nav li {
  margin-right: 20px;
}

.sidebar-nav li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px;
}

.sidebar-nav li a:hover {
  color: #007bff;
}

.logout-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.logout-button:hover {
  background-color: #c82333;
}

.nav-login-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.nav-login-button:hover {
  background-color: #c82333;
}

/* Add margin to the main content to prevent it from being hidden behind the navbar */
.col-sm-10 {
  margin-top: 120px;
}
