#spacytech-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1em;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  max-height: 100vh;
  overflow-y: auto;
}

.spacytech-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
  flex-wrap: wrap;
  text-align: center;
}

#spacytech-customize-modal {
  margin-top: 1em;
}

#spacytech-manage-cookies {
  position: fixed;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  background: #0073aa;
  color: white;
  border: none;
  padding: 0.4em 0.6em;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

#spacytech-manage-cookies:hover {
  background: #005a8c;
}

@media (max-width: 600px) {
  #spacytech-cookie-banner {
    font-size: 14px;
    padding: 1em 0.5em;
  }

  .spacytech-buttons {
    flex-direction: column;
  }

  .spacytech-buttons button {
    width: 100%;
  }
}
.cookie-option {
  margin-bottom: 1em;
}

.cookie-description {
  font-size: 0.9em;
  color: #555;
  margin-left: 1.5em;
}
.spacytech-modal-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1em;
  padding: 1em;
}

.cookie-option {
  max-width: 400px;
}

.cookie-description {
  font-size: 0.9em;
  color: #555;
  margin-top: 0.3em;
}