body {
	font-family: "Roboto Condensed";
	text-align: justify;
	color: white;
	font-weight: bold;
    margin: 0;
    padding: 20px;
	background-color: #00D2D2;
}

.welcomeMessage{
	margin: 20px;
}

.waiver{
    padding: 10px;
	background-color: #AAB7B8; 
}

.roboto-condensed-<uniquifier> {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.tab-container {
    max-width: 800px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    visibility: hidden;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    visibility: visible;
    position: relative;
    opacity: 1;
}

.tab-button {
	font-family: "Roboto Condensed";
	color: white;
	font-weight: bold;
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.tab-button.active {
    border-bottom: 2px solid white;
    color: yellow;
}

.event-attendees {
	max-width:200px;
	max-height:200px;
	min-width:200px;
	min-height:200px;
    border: 1px solid #ccc;
    padding: 10px;
	max-height:200px;
	
}

.event-card {
    display: flex;
	flex-direction: column;
    margin-bottom: 20px;
	min-width: 400px;
    border: 1px solid #ccc;
    padding: 10px;
}

.event-info {
    flex: 1;
}

.event-map {
	max-width:200px;
	max-height:200px;
	min-width:200px;
	min-height:200px;
    margin-left: 20px;
}