.cookies-modal-wrapper {
  position: fixed;
  z-index: 9999999;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffffee;
  color: #222;
  box-shadow: 10px 0px 50px rgba(0, 162, 255, 0.15);
  backdrop-filter: blur(4px);
  animation: cookies-modal-appear 0.7s;
  max-height: 80vh;
  overflow-y: auto;
}

@keyframes cookies-modal-appear {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}

.cookies-modal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 1rem;
  padding: 24px 2rem;
  max-width: 1200px;
}

.cookies-modal-text {
  font-size: 12px;
  line-height: 16px;
  color: #222;
}
.cookies-modal-text a {
  color: #47448d;
  text-decoration: underline;
}

.cookies-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookies-btn {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookies-btn-accept {
  background: #47448d;
  color: #fff;
  border: none;
}
.cookies-btn-decline {
  background: #47448d;
  color: #fff;
  border: none;
}
@media only screen and (max-width: 800px) {
  .cookies-modal-wrapper {
    max-height: 80vh;
  }
  .cookies-modal-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 16px 1rem;
  }
  .cookies-modal-text {
    font-size: 11px;
    line-height: 15px;
  }
  .cookies-modal-buttons {
    width: 100%;
  }
  .cookies-btn {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .cookies-modal-wrapper {
    max-height: 70vh;
  }
  .cookies-modal-container {
    padding: 12px 0.75rem;
  }
  .cookies-modal-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .cookies-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
  }
  .cookies-modal-text {
    font-size: 10px;
    line-height: 14px;
  }
} 