/* Fides Manage Preferences Link - Shared Styles */

/* Flexbox layout for sticky footer positioning */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > * {
  flex-shrink: 0;
}

/* Hide the modal link by default */
.fides-manage-preferences-link {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(102, 102, 102, 0.8);
  text-decoration: underline;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  opacity: 0.8;
}

.fides-manage-preferences-link:hover {
  color: #3296e6;
  opacity: 1;
}

/* Container for the footer link - sticks to bottom of viewport on short pages */
.fides-overlay-modal-link-shown .fides-manage-preferences-link {
  display: block;
  margin-top: auto;
  padding: 8px;
  text-align: center;
  position: relative;
  z-index: 0;
  background-color: transparent;
}
