/* Styles for cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(18, 20, 22, 0.96);
  color: #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
  padding: 16px 20px;
  font-size: 14px;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-text { margin: 0; color: #e6e6e6; flex: 1 1 60%; }
.cookie-text a { color: #fff; text-decoration: underline; }

.cookie-actions { display:flex; gap:8px; flex: 0 0 auto; }
.cookie-btn { padding: 9px 14px; border-radius: 6px; border: none; cursor: pointer; font-weight: 600; }
.cookie-btn-accept { background: #27ae60; color: #fff; }
.cookie-btn-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.14); }

@media (max-width: 700px) {
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-text { flex: 1 1 100%; margin-bottom: 10px; }
  .cookie-actions { justify-content: flex-end; width: 100%; }
}

/* Hover, focus and active states for buttons */
.cookie-btn {
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  opacity: 0.98;
}
.cookie-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.cookie-btn:focus {
  outline: 2px solid rgba(255,255,255,0.12);
  outline-offset: 2px;
}
.cookie-btn-accept:hover {
  background: #2ecc71;
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.24);
}
