.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.0);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  height: 200px;
  margin-top: auto;
  margin-bottom: 50px;
}

.cookie-modal {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.modal-title-group {
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.modal-subtitle {
  font-size: 14px;
  color: gray;
  margin: 0;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  background: #e0e0e0;
  color: #333;
}

.modal-btn.primary {
  background: #4caf50;
  color: white;
}