  #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background-color: #ff0202ff;
  width: 0;
  z-index: 9999;
  border-radius: 0 0 5px 5px;
  transition: width 0.25s ease-out;
}


.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #abff62;
  border-radius: 10px;
  padding: 2px;
  border: 5px solid green;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
  max-width: 500px;
}

.custom-alert-greeting {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #005407;
}

.custom-alert-thought, .custom-alert-time {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #005407;
}


.custom-alert-close {
  position: absolute; /* Position relative to the alert box */
  top: 0px;
  right: 0px; 
  background-color: #015a00;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.custom-alert-close:hover {
  background-color: #597d65;
  color: #14ff10;
}





  /* Main circle */
  /* .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-green);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    z-index: 9999;
  } */

  /* Trail (slightly larger + faded) */
  /* .cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease-out;
    z-index: 9998;
  } */