<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ODKRYJ POLSKÄ - COOKIE CONSENT STYLES */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-grey-dark);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-cookie-primary,
.btn-cookie-secondary {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-primary {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

.btn-cookie-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-cookie-secondary {
  background-color: var(--color-light);
  color: var(--color-dark);
  border: 1px solid var(--color-grey-light);
}

.btn-cookie-secondary:hover {
  background-color: var(--color-grey-light);
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-grey-light);
}

.cookie-settings-panel.show {
  display: block;
}

.cookie-settings-panel h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-grey-light);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option h5 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cookie-option p {
  font-size: 0.8rem;
  color: var(--color-grey);
  margin-bottom: 0;
}

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-grey-light);
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie-primary,
  .btn-cookie-secondary {
    width: 100%;
    text-align: center;
  }
  
  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .switch {
    margin-top: 0.5rem;
  }
}
</pre></body></html>