/* Cookie Consent Banner Styles */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background-color: #f2f2f2;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.cookie-consent .message {
  display: inline-block;
  margin-right: 20px;
}

.cookie-consent .btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.cookie-consent .btn:hover {
  background-color: #0069d9;
}

/* Media Queries */

@media only screen and (max-width: 768px) {
  .cookie-consent {
    padding: 15px;
    font-size: 12px;
  }

  .cookie-consent .message {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .cookie-consent .btn {
    display: block;
    margin: 0 auto;
  }
}
