.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-notice.hidden {
  display: none;
}

.cookie-notice-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-notice-text {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice-button {
  background-color: #3498db;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cookie-notice-button:hover {
  background-color: #2980b9;
}

.cookie-notice-button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .cookie-notice-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-notice-button {
    width: 100%;
  }
}
