/* cps-style.css */
#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

#cookie-modal {
  background: #fff;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  text-align: center;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

#cookie-modal h1 {
  margin-top: 0;
}

#cookie-modal p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.modal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.modal-buttons button {
  flex: 1 1 40%;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  min-width: 100px;
}

#accept-btn {
  background-color: #4CAF50;
  color: #fff;
}

#close-btn {
  background-color: #ccc;
}

@media (max-width: 480px) {
  #cookie-modal p {
    font-size: 14px;
  }
  .modal-buttons button {
    flex: 1 1 100%;
  }
}
