/* Global style for card titles */
.card-title {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #38b2ac;
  font-weight: bold;
}
/* Global styles for filter checkboxes */
.filter-checkbox {
  accent-color: #2563eb;
  margin: 0 4px 0 0;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  color: #111;
  font-weight: 400;
  margin-bottom: 8px;
  user-select: none;
}
/* Info page styles for activity details */
.info-page {
  max-width: 420px;
  margin: 48px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 14px;
  margin-bottom: 18px;
}
.info-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38b2ac;
  margin-bottom: 12px;
}
.info-desc {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 16px;
}
.info-tag {
  display: inline-block;
  background: #e6f7ee;
  color: #38b2ac;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.back-link {
  display: inline-block;
  margin-top: 18px;
  color: #38b2ac;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
}
.back-link:hover {
  color: #38b2ac;
  text-decoration: underline;
}
.card-title {
  color: #38b2ac;
  font-weight: bold;
}
/* Card styles for category selection */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.category-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.08);
  overflow: hidden;
  width: 270px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

/* Remove underline from all text inside card links */
.category-card {
  text-decoration: none !important;
}
.category-card:hover {
  box-shadow: 0 6px 24px rgba(37,99,235,0.16);
  transform: translateY(-4px) scale(1.03);
}
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.card-content {
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #38b2ac;
  margin: 0 0 4px 0;
}
.card-desc {
  font-size: 1.02rem;
  color: #444;
  margin: 0 0 2px 0;
}
.card-time {
  align-self: flex-end;
  background: #e5f1fb;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin-top: 8px;
}
/* Filters row styles */
.filters-row {
  display: flex;
  gap: 18px;
  margin: 18px 0 24px 0;
}

.filter-btn {
  background: #fff;
  color: #2d3748;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover {
  background: #f3f3f3;
  border-color: #38b2ac;
  color: #38b2ac;
}
/* Main page layout styles */
.main-layout {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  gap: 0;
}

.sidebar {
  min-width: 220px;
  background: #fff;
  padding: 40px 24px 32px 32px;
  margin: 0;
  position: static;
  left: auto;
  border-right: 1px solid #e0e7ef;
  height: 100vh;
}

.sidebar h2 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #2d3748;
}

.category-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.category-list li {
  font-size: 1.08rem;
  margin-bottom: 18px;
  padding: 8px 0;
  color: #374151;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.category-list li:hover {
  background: #f3f3f3;
}

.main-content {
  flex: 1;
  padding: 48px 32px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
}

.landing-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 160px;
  padding-right: 160px;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 32px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(37,99,235,0.06);
  border-radius: 24px;
  background: #fff;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 24px;
  text-align: left;
}

.subtext {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 32px;
  text-align: left;
}
