.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 460px;
  background: #c0c0c0;
  color: #000000;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-radius: 0;
  box-shadow: 4px 4px 0 #000000;
  padding: 1rem;
  z-index: 9999;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  transition: all 0.4s ease;
  opacity: 0;
}

.cookie-banner-center.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 0.75rem;
  background: navy;
  color: white;
  padding: 4px 8px;
  display: inline-block;
}

.cookie-text {
  color: #000000;
  margin: 0 0 1rem;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px inset #c0c0c0;
}

.cookie-text a {
  color: blue;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  background: #c0c0c0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn:active {
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 0.5rem 1rem 0.45rem 1.05rem;
}

.cookie-icon {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: #008080;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  font-size: 24px;
  color: white;
}

.cookie-icon.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-toggle-item {
  padding: 0.75rem 0;
  border-bottom: 1px dotted #808080;
}

.cookie-back-btn {
  background: #c0c0c0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .cookie-banner-center {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}