ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  display: flex;
  border-bottom:3px solid;
  border-image: linear-gradient(270deg, #004e32 0%, #39FF14 100%)3;
  border-width: 0 0 0.5px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  flex-wrap: nowrap;        
    overflow-x: auto;         
    white-space: nowrap; 
    -webkit-overflow-scrolling: touch;
}
ul::-webkit-scrollbar{
  display:none;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}
ul li a.active {
  background-color: #04AA6D;
}
li{
  font-family:Lato;
  border-right:1px solid white;
}
body{
  margin: 0;
}
h1{
  margin: 5%;
  text-decoration: underline;
}
p{
  padding: 2%;
  margin: 2%;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
}


/* --- FUNDRAISER GOAL METER STYLES --- */
.fundraiser-container {
  font-family: Arial, sans-serif;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  box-sizing: border-box;
  width: 100%;
  margin-top: 20px; /* Separates it cleanly from your calendar box */
}

.fundraiser-container * {
  box-sizing: border-box;
}

.fundraiser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fundraiser-header .raised-amount {
  font-size: 1.2rem;
  color: #333333;
}

.fundraiser-header .raised-amount strong {
  color: #28a745; /* Green thematic accent for raised capital */
  font-size: 1.4rem;
}

.fundraiser-header .target-amount {
  font-size: 0.95rem;
  color: #666666;
  font-weight: bold;
}

/* The empty track boundary gray bar */
.progress-bar-background {
  width: 100%;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden; /* Ensures the sharp edge inner fill curves with the container */
  position: relative;
}

/* The live colored filling tracking progress */
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745, #34ce57); /* Subtle green gradient effect */
  border-radius: 10px 0 0 10px;
  transition: width 0.4s ease-in-out;
}

.fundraiser-footer {
  margin-top: 8px;
  text-align: right;
  font-size: 0.85rem;
  color: #888888;
  font-style: italic;
}
