/*
#	Project: fileearner - Engineering with logic, software with soul.
#
#	This is NOT a freeware, use is subject to license terms.
#
#	Website: https://fileearner.com
#
#	Copyright (C) 2008-2083 fileearner Team. All Rights Reserved.
*/

/* Cookie bar uses same tokens as panel.css / theme-live (:root); fallbacks keep marketing-only pages on-brand. */
/* Cookie consent bar: fixed to viewport bottom; above H5 tab bar when present */
.fe-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  z-index: 9500;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(
    180deg,
    var(--fe-navy, #0f1f3a) 0%,
    var(--fe-navy-2, #152a4a) 100%
  );
  color: #e2e8f0;
  box-shadow: 0 -4px 24px rgba(15, 31, 58, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body:has(.fe-h5-bottom-tabbar) .fe-cookie-consent {
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.fe-cookie-consent__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.fe-cookie-consent__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.fe-cookie-consent__desc {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.fe-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.fe-cookie-consent .fe-btn {
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.35rem;
  cursor: pointer;
  border: none;
}

.fe-cookie-consent .fe-btn-primary {
  background: var(--fe-accent, #3b82f6);
  color: #fff;
}

.fe-cookie-consent .fe-btn-primary:hover {
  background: #2563eb;
}

.fe-cookie-consent .fe-btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fe-cookie-consent .fe-btn-ghost:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.45);
  color: #fff;
}

/* Footer links: GDPR / CCPA */
.fe-compliance-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0.5rem 0 0.25rem;
  font-size: 0.8rem;
}

.fe-panel-site-footer .fe-compliance-footer-links,
.fe-auth-page-footer .fe-compliance-footer-links {
  margin-bottom: 0.35rem;
}

.fe-compliance-footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fe-compliance-footer-link:hover {
  opacity: 0.9;
}

.fe-compliance-footer-sep {
  opacity: 0.5;
  user-select: none;
}

.site-footer .fe-compliance-footer-links {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .fe-compliance-footer-link {
  color: #93c5fd;
}
