/* style.css */

body {
  background-color: #f8f9fa;
  padding-bottom: 70px;
}

.card-header h3 {
  font-weight: 300;
}

.bottom-nav {
  border-top: 1px solid #dee2e6;
}

.bottom-nav .nav-link {
  text-align: center;
}

.card-body a {
  color: #dc3545;
  text-decoration: none;
}
.card-body a:hover {
  text-decoration: underline;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1050; /* This should be high enough */
  display: none; /* Initially hidden, JS shows it */
  justify-content: center;
  align-items: center;
}

.cookie-consent-banner-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 960px; /* Adjust this to match your main content card's max-width */
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.cookie-consent-banner-content p {
  margin: 0;
  font-size: 0.9rem;
  flex-grow: 1;
  padding-right: 15px;
}

.cookie-consent-banner-content .btn-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .cookie-consent-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent-banner-content p {
    margin-bottom: 10px;
    padding-right: 0;
    width: 100%;
  }
  .cookie-consent-banner-content .btn-container {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}

.cookie-consent-banner-content a {
  color: #dc3545;
  text-decoration: underline;
}

.cookie-consent-banner-content a:hover {
  color: #a71d2a;
}

.cookie-consent-banner-content .btn-link.cookie-decline-link {
  color: #6c757d;
  text-decoration: none;
  padding-left: 0;
  padding-right: 0;
}
.cookie-consent-banner-content .btn-link.cookie-decline-link:hover {
  color: #212529;
  text-decoration: underline;
}
