body {
  background-color: #004138; /* Athena green */
  color: #FFFFFF;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: 'Exo 2', sans-serif;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body.athena-bg {
  background-color: #004138 !important;
  color: #fff !important;
}
/* Add consistent breathing room for full-width sections */
.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1400px) {
  .container-fluid {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.login-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.login-container h1 {
  color: #CFB539;
  margin-bottom: 10px;
  font-weight: 700;
}

.login-container p {
  margin-bottom: 30px;
  font-size: 1.1em;
}

.logo-top-right {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 10em;
  z-index: 3;
}

.g_id_signin {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Bottom SVG wave */
.bottom-arch {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.fill-gold {
  fill: #CFB539;
}

/* Circle Animation Background */
.circle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.animated-circle {
  position: absolute;
  border: 2px solid #CFB539;
  border-radius: 50%;
  opacity: 0.12;
  animation: growFade 6s ease-in-out infinite;
}

@keyframes growFade {
  0% {
    transform: scale(0.3);
    opacity: 0.15;
  }
  70% {
    transform: scale(2.2);
    opacity: 0.05;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Stronger contrast for guidance accordion */
.tl-tile{
  background: rgba(0, 0, 0, 0.55);        /* darker panel behind entire item */
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.accordion-button{
  font-weight: 700;
  color: #0b2a24;                         /* dark text on light header */
  background: rgba(207,181,57,0.18);      /* gold-tinted header bar */
}
.accordion-button:not(.collapsed){
  color: #0b2a24;
  background: rgba(207,181,57,0.28);      /* slightly stronger when open */
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
}

/* Column cards */
.tl-col.tl-col-opaque{
  background: rgba(0, 0, 0, 0.68);        /* was 0.35 — make it solid */
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
}

.tl-col h5{
  color: #CFB539;                         /* Athena gold headings */
  font-weight: 700;
  margin-bottom: .75rem;
}

.tl-col ul{ padding-left: 1.25rem; }
.tl-col li{
  color: #f4f7f6;                         /* brighter text */
  line-height: 1.6;
  margin-bottom: .35rem;
}

/* Slightly brighter body text inside accordion items */
.accordion-body{ color: #eaf2f0; }

/* Accordion headers (make them match Athena theme) */
.accordion-button {
  font-weight: 700;
  color: #CFB539 !important;          /* gold text */
  background: rgba(0, 0, 0, 0.45);    /* darker background */
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;             /* brighter text when open */
  background: rgba(207,181,57,0.25);  /* subtle gold tint when expanded */
}

.accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(207,181,57,0.6);
}


/* Standards list items */
.tl-col li {
  color: #f4f7f6;
  line-height: 1.6;
  margin-bottom: .35rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;  /* makes them feel clickable */
}

/* Hover effect */
.tl-col li:hover {
  background: rgba(207,181,57,0.2);  /* subtle gold highlight */
  color: #fff;
}

/* Selected effect (when clicked on record page) */
.tl-col li.selected {
  background: rgba(207,181,57,0.45);
  color: #fff;
  font-weight: 600;
}
