body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: <auto>;
    font-style: normal;
    padding-bottom:80px;
      
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.coming-soon-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #dc3545; /* Bootstrap red */
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
  white-space: nowrap;
}

.disabled-link {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

footer {
  flex-shrink: 0;
}

.logo-img {
    height: 80px; /* Adjust as needed */
    object-fit: contain;
    padding: 0;
    margin: 0;
  }

/* Floating welcome message styles */
.welcome-msg {
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
  }
  
  @media (max-width: 576px) {
    .welcome-msg {
      font-size: 1.2rem;
    }
  }

.navbar-brand {
    color: #008080;
    font-family: "Nunito", sans-serif;
}
.navbar-brand:hover{
    color: #04F06A;
}

.navbar-nav .nav-link:hover,
.navbar-nav span:hover {
  background-color: #00808093;  /* light teal highlight */
  border-radius: 0.25rem;     /* rounded corners */
  color: #000000;             /* optional: change text color on hover */
  transition: background-color 0.3s ease;
  cursor: pointer;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.home-lead-title {
    font-size: 2rem;
    /* Adjust as needed */
    font-weight: 700;
    /* Bold it for emphasis */
    display: block;
    /* Ensures it sits on its own line */
}

.home-lead {
    font-size: 1.25rem;
    /* slightly larger than base */
    line-height: 1.7;
    /* improved spacing between lines */
    max-width: 800px;
    /* keeps the text narrow and readable */
    margin: 0 auto;
    /* centers the block */
    text-align: center;
    /* centers text */
    color: #333;
}

.home-lead-box {
    width: 90%;
    background-color: #d5d5d5;
    /* faint grey (Bootstrap light) */
    border-radius: 0.75rem;
    /* rounded corners */
    padding: 1.5rem 2rem;
    /* inner spacing */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 2rem auto;
}

.btn-teal {
    background-color: #008080;
    color: #ffffff;
    font-size: 2.5rem;
    border: 4px solid black;

}

.btn-teal:hover {
    background-color: #04F06A;
    color: #000000;
    border: 4px solid black;
}

.btn-teal-sm {
    background-color: rgb(0, 128, 113);
    color: #fffffA;
    border: 2px solid black;
}

.btn-blank-sm {
    color: #008080;
    border: 2px solid black;
}

.google-signup {
    width: 500px;
}

.btn-upgrade {
    background-color: #04F06A; /* Replace this with your desired green */
    color: #000000;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem; /* Optional: rounded corners */
    transition: all 0.2s ease-in-out;
  }
  
.btn-logout {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }

.agenda-list li {
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agenda-item-text {
  flex: 1;
}

.delete-btn {
  background-color: #dc3545;
  border: none;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 1rem;
}