.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: #ffffff;
  padding: 20px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid #f0f0f0;
}

.cookie-banner p {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.btn-cookie {
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  flex: 1;
  max-width: 150px;
}

.btn-accept {
  background-color: #000;
  color: white;
  border: none;
}

.btn-accept:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-reject {
  background-color: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.btn-reject:hover {
  background-color: #f5f5f5;
  color: #333;
}

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-cookie {
    max-width: 100%;
    width: 100%;
  }
}
