/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  border-radius: 20px;
  padding: 10px 20px;
  max-width: 380px;
  width: 95%;
  gap: 15px;
  z-index: 1000;
  transform: none;
}

.cookie-modal img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.cookie-modal-text p {
  margin-top: 10px;
  flex-grow: 1;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #555;
}

.cookie-modal-text a {
  color: #007bff;
  text-decoration: none;
}

.cookie-modal-text a:hover {
  text-decoration: underline;
}

.cookie-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal-buttons button {
  border: 1px solid #7f7d7d;
  background-color: transparent;
  color: #7f7d7d;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.cookie-modal-buttons button:hover {
  background-color: #007bff;
  color: white;
}

.cookie-modal-buttons .accept {
  border-color: #007bff;
  color: #007bff;
}

.cookie-icon {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: url('./img/cookies.png') no-repeat center/cover;
  display: none;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.4;
}