.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner > p {
  margin: 0;
  flex: 1;
  color: white;
}

.cookie-banner > a {
  background: #0d6efd;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 10px;
}

/* Hide banner when the user clicks "Accept" */
#hide-cookie:target {
  display: none;
}

@media (max-width: 560px) {
  .modal-dialog,
  .modal {
    max-width: 100vw !important;
    margin: 0;
  }
  .modal-content {
    border-radius: 0;
  }
}
