.cookie-popup {
  position: fixed;
  bottom: 40px;
  left: 40px;
  padding: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 400px;
  border: 3px #0d0d1f solid;
  border-radius: 20px;
  background: white;
}

.card {
  width: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 30px;
  gap: 13px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(97, 81, 81);
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  color: rgb(26, 26, 26);
}

.cookieDescription {
  text-align: left;
  font-size: 0.85em;
  font-weight: 400;
  color: rgb(99, 99, 99);
  margin-bottom: 10px;
}

.cookieDescription a {
  color: #0d0d1f;
}

.cookie-preferences {
  width: 100%;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-option {
  margin-bottom: 15px;
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}

.cookie-option input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.cookie-option span {
  font-weight: 600;
  color: rgb(26, 26, 26);
}

.cookie-option p {
  margin: 5px 0 0 25px;
  font-size: 0.8em;
  color: rgb(99, 99, 99);
  font-weight: 400;
}

.buttonContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.acceptButton,
.declineButton,
.preferencesButton,
.savePreferencesButton {
  font-size: 12px;
  padding: 8px 16px;
  height: 36px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.acceptButton {
  background: linear-gradient(135deg, #0d0d1f 0%, #1a0d2e 50%, #0a0a15 100%);
  color: white;
}
.acceptButton:hover {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 100%);
}

.declineButton {
  background-color: #dadada;
  color: rgb(46, 46, 46);
}

.declineButton:hover {
  background-color: #c0c0c0;
}

.preferencesButton,
.savePreferencesButton {
  background-color: transparent;
  color: #0d0d1f;
  border: 1px solid #0d0d1f;
}

.preferencesButton:hover,
.savePreferencesButton:hover {
  background: linear-gradient(135deg, #0d0d1f 0%, #1a0d2e 50%, #0a0a15 100%);
  color: white;
}
