#oz-cookie-banner {
  --oz-cookie-banner-radius: 0;
  --oz-cookie-button-radius: 0;
  position: fixed;
  z-index: 9999999;
  width: 90%;
  max-width: 450px;
  box-sizing: border-box;
  padding: 25px;
  border: 1px solid #dcdcdc;
  border-radius: var(--oz-cookie-banner-radius);
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  text-align: left;
}
#oz-cookie-banner[hidden],
#oz-cookie-banner [hidden] {
  display: none !important;
}
#oz-cookie-banner.oz-position-bottom-left {
  bottom: 20px;
  left: 20px;
}
#oz-cookie-banner.oz-position-bottom-right {
  right: 100px;
  bottom: 20px;
}
#oz-cookie-banner.oz-position-bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
#oz-cookie-banner.oz-button-radius-rounded {
  --oz-cookie-banner-radius: 12px;
  --oz-cookie-button-radius: 8px;
}
#oz-cookie-banner.oz-button-radius-round {
  --oz-cookie-banner-radius: 12px;
  --oz-cookie-button-radius: 9999px;
}
#oz-cookie-banner h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 20px;
}
#oz-cookie-banner p {
  margin: 0 0 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
#oz-cookie-banner a {
  color: inherit;
  font-weight: 600;
}
.oz-cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
#oz-cookie-banner .oz-cookie-button {
  min-width: 0;
  padding: 10px 6px;
  border: 1px solid #000;
  border-radius: var(--oz-cookie-button-radius, 0) !important;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
#oz-cookie-banner .oz-cookie-button-primary {
  border-color: #146c2e;
  background: #146c2e;
  color: #fff;
}
#oz-cookie-banner .oz-cookie-button:hover,
#oz-cookie-banner .oz-cookie-button:focus-visible {
  border-color: #000;
  background: #000;
  color: #fff;
}
.oz-manage-cookies {
  max-width: 250px;
}
#oz-cookie-preferences {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  background: #f7f7f7;
}
.oz-cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}
.oz-cookie-preference:last-child {
  margin-bottom: 0;
}
#oz-cookie-banner.oz-theme-dark {
  border-color: #333;
  background: #181818;
  color: #f5f5f5;
}
#oz-cookie-banner.oz-theme-dark h3,
#oz-cookie-banner.oz-theme-dark p {
  color: #fff;
}
#oz-cookie-banner.oz-theme-dark #oz-cookie-preferences {
  border-color: #444;
  background: #262626;
}
#oz-cookie-banner.oz-theme-dark .oz-cookie-button-secondary {
  border-color: #fff;
  background: #181818;
  color: #fff;
}
#oz-cookie-banner.oz-theme-dark .oz-cookie-button-secondary:hover,
#oz-cookie-banner.oz-theme-dark .oz-cookie-button-secondary:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #181818;
}
@media (max-width: 480px) {
  #oz-cookie-banner {
    right: auto !important;
    bottom: 10px !important;
    left: 2.5% !important;
    width: 95%;
    transform: none !important;
  }
  .oz-cookie-actions {
    gap: 5px;
  }
  #oz-cookie-banner .oz-cookie-button {
    padding: 10px 3px;
    font-size: 11px;
  }
}
