#wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width:100%;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif
}

@media (min-width: 768px) {
	#wrapper {
		width: 60%;
	}
}

.site-header {
	padding: 10px;
	justify-content: center;
}

.navigation-bar {
	text-align: center;
}

.navigationbar ul {
	display: flex;
	width: 100%;
}

.navigation-bar li {
	display: inline;
	margin: 0 10px;
}

.navigation-bar a {
	text-decoration: none;
	color: black;
}

#body {
    width: 100%;
    margin: 0 auto; 
}

@media (min-width: 768px) {
    #body {
        width: 90%;
	}
}

#opening-hours-table {
    width: auto;
    font-style: italic;
}

#opening-hours-table td:first-child {
    text-align: left;
    padding-right: 20px;
}

#opening-hours-table td:last-child {
    text-align: right;
    padding-left: 20px;
}

#map {
    display: flex;
    justify-content: center;
}

#map iframe {
    width: 100%;
	max-width: 99%;
    height: 50vh;
    margin: 0 auto;
}

#site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
	max-width: 90%; 
    margin: 0 auto; 
    padding: 5px 0;
    width: 90%;
}

#site-footer a {
	color: black;
    text-decoration: none;
}

#site-footer a:hover {
    text-decoration: underline;
}

.footer-left,
.footer-right {
    margin: 0;
}

.price-list-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.separator {
    text-align: center;
    font-size: 24px;
    margin: 10px 0;
}

.price-list-container {
    width: 70%;
    margin: 0 auto;
}

.price-list-table {
    width: 100%;
    margin: 20px auto;
    font-size: 24px;
    text-align: left;
}

.price-list-table td {
    padding: 12px;
}

.price-list-table .note {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    padding-top: 20px;
}