html {
  overflow-y: scroll;
}

.alert {
  background-color: #f7f7f7;
  border-color: #ff9900;
  color: #337ab7;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #3c763d;
  color: #3c763d;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #a94442;
  color: #a94442;
}

.alert-info {
  border-color: #bce8f1;
  color: #31708f;
  /* Darker blue text */
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff !important;
  color: #555555;
  padding: 15px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-text {
  flex: 1;
  margin-right: 20px;
  text-align: left;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
  text-align: left;
  color: #333;
}

.cookie-consent a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.cookie-consent button {
  padding: 5px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-text {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .cookie-consent-buttons {
    justify-content: center;
  }
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .navbar-expand-md {
    padding: 10px;
    margin: 5px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
  }

  .nav-item {
    font-weight: bold !important;
    width: 100% !important;
    padding: -50px -20px !important;
    margin-left: -50px !important;
    text-align: center;
  }

  .nav-item a {
    color: #fff;
    transition: color 0.3s ease;
  }

  .nav-item a:hover {
    color: #030303bd !important;
    background-color: #ff9900;
    backdrop-filter: blur(6px);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .navbar-toggler {
    border: none;
    outline: none;
    transition: all 0.3s ease;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}