body {
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background: #004a77;
  color: white;
  padding: 10px;
}

main {
  padding: 0px 80px;
}

nav {
  margin: 10px 0;
  padding: 0px 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidey {
  display: none !important;
}

#about {
  text-align: left;
  h2 {
    text-align: center;
  }

}

p {
  font-size: 22px;
  line-height: 28px;
}

h1 {
  line-height: 40px;
}

h2 {
  padding-bottom: 30px;
  line-height: 36px;
}

#firebaseui-auth-container {
  margin-top: 30px;
}
.firebaseui-container.mdl-card {
  width: 370px;
  margin-bottom: 30px;
}
.firebaseui-button {
  margin: 0px auto !important;
  font-size: 22px !important;
  height: auto !important;
  padding: 12px !important;
  background: #004a77 !important;
  color: white !important;
  border-radius: 5px !important;
  display: block !important;
  width: 100% !important;
  max-width: 300px !important;
  font-weight: bold !important;
  &:hover {
    background: #0056b3 !important;
  }
}
.firebaseui-idp-icon {
  width: 24px !important;
  height: 24px !important;
}
.firebaseui-idp-text {
  font-size: 22px !important;
}
.firebaseui-id-secondary-link {
  margin-bottom: 20px !important;
}
button {
  font-size: 22px;
  margin: 15px;
  padding: 20px;
  cursor: pointer;
  border: none;
  background: #004a77;
  color: white;
  border-radius: 5px;
  display: block;
  width: 100%;
  max-width: 300px;
  font-weight: bold;
  transition: background 250ms linear;
  &.back-to-home {
    margin-top: 45px;
    width: auto;
    &.bottom {
      margin: 40px auto;
    }
  }
  &.sign-out-bttn {
    background: #FFFFFF;
    color: #004a77;
    border: 2px solid #004a77;
    &:hover {
      background: #d0d0d0;
    }
  }
}

button:hover {
  background: #0056b3;
}

#fb-share-button {
  margin-top: 50px;
  margin-bottom: 10px;
  background-color: #4267B2;
  color: white;
  border: none;
  cursor: pointer;
}

#fb-share-button:hover {
  background-color: #365899;
}


img.partner-logo {
  width: 100%;
  max-width: 400px;
}

.hidden {
  display: none;
}

#home {
  p {
    max-width: 1000px;
    margin: 20px auto 0px;
  }
}

#user-status {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 10px;
}

.partner-cntnr {
  padding: 80px 0px;
  border-bottom: 1px solid black;
  max-width: 900px;
  margin: auto;
}

#activities-cntnr {
  margin: 0px 30px;
}
.activities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.content-box {
  padding: 40px;
  max-width: 700px;
  border-radius: 20px;
  background: #f3f3f3;
  border: 3px solid #333;
  padding: 20px;
  width: 100%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  h2, p {
    margin: 10px 0;
  }
  img {
    width: 80px;
  }
  .desc-cntnr {
    text-align: left;
    li:not(:first-child) {
      margin-top: 10px;
    }
  }
  .checkmark {
    display: block;
    margin: 30px auto 10px;
  }
}
.activity-bttn {
  margin: 40px auto 20px;
}
.incomplete-bttn {
  background: #FFFFFF;
  color: #004a77;
  border: 2px solid #004a77;
  &:hover {
    background: #d0d0d0;
  }
}

.badge-grid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.badge {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  img {
    width: 50px;
  }
}

/* Accessibility Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 18px;
  }
  button {
    font-size: 18px;
  }
  main {
    padding: 0px 15px;
  }
}

