  .dayscontainer {
    display: flex;
    align-items: center; /* vertical alignment */
    gap: 16px;
    font-family: Arial, sans-serif;
  }

  .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1b5e20; /* circle color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: bold;
  }

  .name {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #1b5e20;
  }

.social-link {
    color: #1877f2;        /* Facebook blue */
    font-size: 1.6rem;
    margin-right: 0.5rem;
    text-decoration: none;
}

.social-link-small {
    color: #1877f2;        /* Facebook blue */
    font-size: 1.2rem;
    margin-right: 0.2rem;
    text-decoration: none;
}

.social-link:hover {
    color: #0f5dc4;
}


html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7f6;
    color: #333;

    display: flex;
    flex-direction: column;
}

header {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 1rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h2 {
    margin-top: 0;
    color: #1b5e20;
}

.progress {
    background: #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    background: #43a047;
    height: 18px;
    width: 23.3%; /* change as funds increase */
}

section {
    margin-top: 3rem;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: center; /* centers the whole header */
}

.header-logo {
  height: 70px;        /* adjust to suit your design */
  width: auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 35px;
}

.header-text h1 {
  margin: 0;
  margin-left:10px;
}

.header-text p {
  margin: 0;
  margin-left:10px;
}

footer {
    background: #eee;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}
