* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
}
:root {
  --primary-color: #1c6ea4;
  --secondary-color: #154d71;
  --button-color: #33a1e0;
  --text-color: #f6f6f6;
}
body::selection {
  background-color: var(--primary-color);
  color: white;
}
body {
  background-color: var(--text-color);
  text-align: center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  position: fixed;
  z-index: 999;
  background-color: var(--text-color);
}
.navbar ul li a {
  text-decoration: none;
  padding: 10px 20px;
  margin-left: 50px;
  font-size: 18px;
  transition-duration: 0.5s;
}
.dropdown-menu {
  border-radius: 12px;
  border: none;
}
.dropdown-menu .dropdown-item {
  margin-left: 0;
  color: var(--main-color);
  display: flex;
  align-items: center;
  transition-duration: 0.3s;
  border-radius: 8px;
}
.navbar ul li a:hover {
  color: var(--secondry-color);
  font-size: 20px;
  border-bottom: var(--secondry-color) 3px solid;
}

.profile-icon,
.superAdminDashboardLink,
.adminDashboardLink{
  display: none;
}
/* Event Booking Background And h2 Styling Begin */
.eventBooking {
  background: url("../images/background-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  text-align: center;
}
.eventBooking h2 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
.eventBookingSection h2 {
  margin-bottom: 30px;
  margin-top: 30px;
}
table {
  width: 90%;
  margin: auto;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
table thead {
  background: var(--secondary-color);
  color: #fff;
}
button a {
  text-decoration: none;
  color: white;
  display: inline-block;
  padding: 0px 15px;
}
table th,
table td {
  padding: 1rem;
  text-align: center;
  width: 25%;
}
button {
  background: var(--button-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.eventBookingSection button:hover {
  background: var(--secondary-color);
}
div.description a {
  display: inline-block;
  text-decoration: none;
  color: black;
  margin-bottom: 15px;
}
  .span{
    display: none;
  }
@media (max-width: 700px) {
  table {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    box-shadow: none;
    background-color: transparent;
  }
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
    text-align: center;
  }

  table th,
  table td {
    padding: 1rem;
    text-align: center;
    width: 100%;
  }

  table thead {
    display: none;
  }
  .description a {
    text-decoration: none;
    color: black;
  }
  table tr {
    background: var(--text-color);
    margin-bottom: 2rem;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  table td {
    margin-left: 0px;
  }

  button {
    margin-top: 0.5rem;
  }
  .span {
    display: inline-block;
    text-align: center;
    color: #1e3a8a;
    font-weight: bold;
    background-color: var(--primary-color);
    color: var(--text-color);
    width: 100%;
  }
  div.description {
    margin: auto;
    width: 90%;
  }
}
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 20px 10px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.footer-section h3,
.footer-section h4 {
  color: white;
  font-weight: bold;
}
.footer-section p,
.footer-section ul {
  font-size: 16px;
  line-height: 1.8;
}
.footer-section ul {
  list-style: none;
  margin-top: 5px;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  transition-duration: 0.3s;
  width: fit-content;
}

@media (max-width: 470px) {
.footer-container{
  display: grid;
}
.footer-section ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}
}