.cookie-block {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483646;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.58);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-popup {
  background-color: #fff;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-popup-content h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.cookie-popup-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cookie-accept {
  flex: 1;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-accept:hover {
  background-color: #0056b3;
}

.cookie-decline {
  flex: 1;
  padding: 10px 20px;
  background-color: #f5f5f5;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-decline:hover {
  background-color: #ddd;
}