/* cookie.css */
.cookie-confirmation {
  padding: 10px 30px;
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  font-family: "MontserratSemiBold", sans-serif;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.cookie-confirmation .k-button {
  justify-content: center;
  white-space: nowrap;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  font-family: "MontserratSemiBold", sans-serif;
 font-size: 1rem;
  line-height: 1.2rem;
  border: 0;
  background-color: var(--kendo-color-primary, #0d6efd);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-confirmation .k-button:hover {
  background-color: #0b5ed7;
}

.cookie-confirmation a {
  text-decoration: underline;
  color: #ffffff;
}

.cookie-agreement-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #212529;
}

.cookie-agreement-content p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.cookie-agreement-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
