
.affiliate-container {
  display: flex;
}
.sidebar {
  width: 200px;
  padding: 20px;
  border-right: 1px solid #ccc;
}
.sidebar h3 {
  margin-top: 0;
}
.sidebar label {
  display: block;
  margin-bottom: 10px;
}
.main-content {
  flex-grow: 1;
  padding: 20px;
}
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
}
#ateam-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/your-ateam-image.jpg') no-repeat center center; /* Replace with your A-Team specific banner image */
    background-size: cover;
    height: 50vh; /* smaller hero for this page */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

#ateam-hero h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#ateam-hero p {
    font-size: 22px;
    margin-bottom: 40px;
    font-style: italic;
}
