/*
 * Utilities - Helper classes and overrides
 */

/* Text alignment */
.text-center {
  text-align: center;
}

.center {
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-800);
  color: #ffffff;
  padding: 16px 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-link {
  color: var(--slate-400);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: #ffffff;
}

.cookie-banner .button {
  padding: 10px 24px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
