:root { 
  --background-color: #070d1a; /* Background color for the entire website, including individual sections */
  --default-color: #e4edf5; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f2f8fe; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10a3d7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #131825; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.brand-llc {
  font-size: 0.6em;
  vertical-align: text-bottom;
  /* you can tweak color, font‐weight, etc. if you want */
}

visible-navbar{
    background: var(--color-primary);      /* visible palette variable already set */
    color:#fff;
}

.visible-navbar .btn-outline-light{
    --bs-btn-border-color: transparent;
    --bs-btn-hover-bg:        rgba(255,255,255,.15);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-bg:       rgba(255,255,255,.25);
}

.visible-navbar .dropdown-menu{
    --bs-dropdown-bg: #fff;
    --bs-dropdown-link-active-bg: var(--color-primary);
}

.table-visible{
  background: var(--surface-color);
  color: var(--default-color);
  border-color: rgba(255,255,255,08);
}

.table-visible thead{
  background: var(--background-color);
  color: var(--heading-color);
  font-weight: 600;
}

.table-visible a{
  color: var(--accent-color);
}

.table-visible a:hover{
  color: var(--contrast-color);
  background: var(--accent-color);
}

.email-box {
    width: 480px;
}
