
.glow {
  text-shadow: 0 0 10px rgba(255, 193, 21, 0.8);
  transition: text-shadow 0.3s ease;
  color: aqua;
}

/* Glow for Ray One – Subtle cool (dark blue-gray based glow) */
.glow-ray-cool {
  color: #B0E0E6; /* PowderBlue */
  text-shadow: 0 0 10px rgba(176,224,230,0.8);
  transition: text-shadow 0.3s ease;
}

/* Glow for Ray Two – Subtle warm (golden glow) */
.glow-ray-warm {
  color: #FFD700; /* Gold */
  text-shadow: 0 0 10px rgba(255,215,0,0.8);
  transition: text-shadow 0.3s ease;
}

/* Glow for Ray Three – Subtle cool blue (light sky blue glow) */
.glow-ray-blue {
  color: #87CEFA; /* LightSkyBlue */
  text-shadow: 0 0 10px rgba(135,206,250,0.8);
  transition: text-shadow 0.3s ease;
}

/* Glow for Ray Four – Subtle green (pale green glow) */
.glow-ray-green {
  color: #98FB98; /* PaleGreen */
  text-shadow: 0 0 10px rgba(152,251,152,0.8);
  transition: text-shadow 0.3s ease;
}

/* Glow for Ray Five – Subtle purple (thistle glow) */
.glow-ray-purple {
  color: #D8BFD8; /* Thistle */
  text-shadow: 0 0 10px rgba(216,191,216,0.8);
  transition: text-shadow 0.3s ease;
}




@font-face {
        font-family: 'Gilroy';
        src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot');
        src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.ttf') format('truetype');
        font-weight: 800;
        font-style: normal;
    }
	
.font-gilroy {
    font-family: 'Gilroy', sans-serif !important;
}




.start-audit-button {
  background-color: #222; 
  color: rgba(115, 115, 115, 1);

  /* Use a neutral solid border by default */
  border: 1px solid;
  border-radius: 8px;
  border-color: #785546;

  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 100;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;

  transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.start-audit-button:hover {
  background-color: #1a1a1a; /* slightly darker shade */
  color: #fff;

  /* Change the border to a subtle gradient */
  border: 1px solid;
  border-radius: 8px;
  cursor: pointer !important;

}

.start-audit-button:focus {
  outline: none;
}
