/* Cookie Bar - Full Width, Fixed Bottom */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #0f66dd;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  display: none;
}

.cookie-bar__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-bar__message {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

.cookie-bar__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-bar__btn {
  background-color: #0f66dd;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-bar__btn:hover,
.cookie-bar__btn:focus {
  background-color: #0d58bf;
}

.cookie-bar__link {
  font-size: 13px;
  color: #0f66dd;
  text-decoration: underline;
  align-self: center;
  transition: color 0.3s ease;
}

.cookie-bar__link:hover,
.cookie-bar__link:focus {
  color: #0d58bf;
}

.form-results {
  position: relative;
  z-index: 10;
}
@media (min-width: 576px) {
  .cookie-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
