h2 {
    font-weight: 600;
    color: #02629c !important;
    font-size: 3vw !important;
}
.card-body p, .card-body li {
font-weight: 300;
font-size: 1.1em;
}
.camp-header {
  background-color: #FFC107;
  color: #D32F2F;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.camp-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.camp-body {
  background-color: #F9E79F;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.camp-body .lead {
  font-size: 1.2rem;
  color: #1976D2;
}

.camp-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camp-list li {
  font-size: 1.1rem;
  color: #1976D2;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.camp-list li i {
  color: #D32F2F; /* Red checkmark */
  margin-right: 10px;
}

.camp-button {
  background-color: #D32F2F; /* Red button */
  color: #FFF;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.camp-button:hover {
  background-color: #B71C1C; /* Darker red on hover */
}

.camp-flyers {
  margin-top: 20px;
}

.camp-flyers img {
  border-radius: 10px; /* Circular effect inspired by flyer photos */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

.camp-table {
  margin-top: 20px;
  background-color: #FFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.camp-table th {
  background-color: #1976D2; /* Blue header */
  color: #FFF;
  font-size: 1.1rem;
}

.camp-table td {
  color: #1976D2;
}

.camp-table a {
  color: #D32F2F; /* Red links */
  text-decoration: none;
}

.camp-table a:hover {
  text-decoration: underline;
  color: #B71C1C;
}
.card.mb-4 {
    border: none;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    padding: 2%;
}
h1.card-title {
    text-align: center;
    font-weight: 600;
    color: #02629c;
}
i.fa-solid.fa-plus {
    margin-right: .5em;
}
@media (max-width: 768px) {
  .camp-header h1 {
    font-size: 2rem;
  }
  .camp-body .lead {
    font-size: 1rem;
  }
  .camp-flyers .col-md-6 {
    margin-bottom: 20px;
  }
  .camp-table {
    font-size: 0.9rem;
  }
}
button.accordion-button.collapsed i {
    color: #ffffff;
}
button.accordion-button.collapsed {
    /* background: #fed01b;
    color: #131e59; */
    margin-top: .2em;

    color: #ffffff;
background-color: #244069;
}

.table-container {
  background-color: #fdf4e3;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
}

/* Header */
.table thead {
  background-color: #2a3182;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table thead th {
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #ffd200;
}

/* Rows */
.table tbody tr {
  transition: background-color 0.2s ease-in-out;
}

.table tbody tr:hover {
  background-color: #ffe59d;
}


.table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
}


.table td a {
  color: #2a3182;
  font-weight: 600;
  text-decoration: none;
}

.table td a:hover {
  text-decoration: underline;
  color: #ee3e36;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fffbe8;
}

@media (max-width: 768px) {
  .table td, .table th {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
