/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "courier", monospace;
  background-image: url(/img/bg.jpg);
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.menu {
  align-items: center;
  border: 1px solid gray;
  margin-bottom: 10px; 
}

h1 {
  font-family:sans-serif;
	font-size: 38px;
	margin: 0em 0em 0.5em;
}

h2 {font-size: 24px;}

h3 {font-size: 18px;
  font-style: italic;
}

h4 {font-size: 16px;}
h6 {font-size: 45px;}
	
table, th, td {
  border: 1px solid grey;
  border-collapse: collapse;
  margin: 10px;
  padding: 10px;
}
	
/*.event {background-color: green; border: 4px solid grey; }*/
  



/* ----- EVENT TABLE TEST ----- */

  .event-table {
    border-collapse: collapse;
    width: 60%;
    margin-bottom: 40px;
    background-color: #fff;
}

.event-table th, .event-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.event-table th {
    background-color: black;
    color: white;
}

/* Styling for past events */
.past-events tbody tr {
    color: #888; /* Gray out past events */
    text-decoration: line-through; /* Strikethrough past events */
}

/* Styling for upcoming events */
.upcoming-events tbody tr:hover {
    background-color: #f1f1f1;
}
