/* Cookie consent banner styles */
#ms-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(26,26,26,0.98);
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
  max-width: 980px;
  margin: 0 auto;
  font-family: inherit;
}

#ms-cookie-banner .ms-cc-text { flex: 1; font-size: 0.95rem; line-height: 1.3; color: #f1f1f1; }
#ms-cookie-banner .ms-cc-actions { display: flex; gap: 8px; align-items: center; }
#ms-cookie-banner .ms-cc-btn { padding: 8px 12px; border-radius: 8px; border: none; cursor: pointer; font-weight: 700; }
#ms-cookie-banner .ms-cc-accept { background: #28a745; color: #fff; }
#ms-cookie-banner .ms-cc-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.12); }
#ms-cookie-banner .ms-cc-more { background: transparent; color: #fff; text-decoration: underline; border: none; padding: 0 6px; font-weight: 600; }

/* Small preferences button to reopen banner */
#ms-cookie-open {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 99999;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 640px) {
  #ms-cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 12px; flex-direction: column; align-items: stretch; gap: 10px; }
  #ms-cookie-banner .ms-cc-actions { justify-content: flex-end; }
  #ms-cookie-open { left: 8px; bottom: 8px; padding: 8px; }
}
