
.remove-button {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #d32f2f; /* Material red for the text */
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
}

.remove-button:hover {
	background-color: #d32f2f;
	color: #fff;
}

.remove-icon {
	margin-right: 6px;
	font-size: 16px;
	line-height: 1;
}

#mainviewport {
	min-height: calc(100vh - 115px);
}

.feedbackbtn {
	margin-left: 8px;
}

.hero {
	background: linear-gradient(to right, #4A90E2, #7B68EE);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.section {
	padding: 3rem 0;
}

.card {
	border: none;
	box-shadow: 0 2px 10px rgba(0,0,0,1);
	margin-bottom: 2rem;
}

.btn-primary {
	background-color: #4A90E2;
	border: none;
}

.btn-primary:hover {
	background-color: #357ABD;
}

footer {
	background: #f8f9fa;
	padding: 1rem 0;
	text-align: center;
	font-size: 0.875rem;
	color: #666;
}


.topsitebar {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
	min-height: 30vh;
	background-color: rgba(200,200,230,0.75);
	box-sizing: border-box;
}

.sitehomespot {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	text-align: center;
	flex: 0 0 auto;
	margin-bottom: 10px;
	font-family: Lato, Arial;
}

.sitenav {
	flex: 0 0 auto;
	font-size: 1.2rem;
	color: #555;
	margin-top: 10px;
}

.importanteventsbar {
	position: relative;
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 30vh;
	background-color: rgba(200,200,200,0.5);
	padding: 20px;
	box-sizing: border-box;
}

.eventslist {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 50%;
	max-width: 800px;
	/* text-align: center; */
}

.divcalendar {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 50%;
	max-width: 800px;
	text-align: center;
}

.eventslist a {
	font-size: 1.3rem;
	color: #1a73e8;
	text-decoration: none;
	display: block;
}

.eventslist a:hover {
	text-decoration: underline;
}

.thirdbar {
	position: relative;
	display: block;
	width: 100%;
	min-height: 30vh;
	background-color: rgba(200,220,220,0.5);
	padding: 20px;
	box-sizing: border-box;
}

#showsitestuff {
        background: white;
        padding: 20px;
        border-radius: 8px;
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
}


html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	background-color: #FFFFFF;
	color: #333333;
}

.hidden {
	display: none;
}

body {
	margin: 0px;
}

.screencover {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100vw;
	height: 100vh;
	z-index: 30000;
	top: 0px;
	left: 0px;
}

#divbody {
	background-image: url("../images/stakehouse.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,0.6);
	background-blend-mode: lighten;
	height: calc(100dvh - 16px);
	/* padding: 8px; */
	width: 100vw;
	box-sizing: border-box;
	position: relative;
}

#divfooter {
	position: fixed;
	bottom: 0px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	left: 0px;
	background-color: rgba(255,255,255, 0.25);
	border-top: 1px solid black;
	box-sizing: border-box;
	height: 45px;
}

#divdisclaimer {
	flex: 1 1 auto;
	text-align: center;
	font-size: 16px;
}

#divsocialmedialinks {
	flex: 0 0 auto;
	margin-right: auto;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-left: 10px;
}

#mainbody {
	position: relative;
	display: inline-block;
	width: 100%;
	height: calc(100dvh - 52px);
	box-sizing: border-box;
	overflow-y: auto;
}


@media screen and (max-width: 800px) {
	
	#divdisclaimer {
		font-size: 12px;
	}
	.sitehomespot {
		font-size: 1.4rem;
		margin-right: 10px;
	}
	.sitenav {
		font-size: 1rem;
	}
	.eventslist a {
		font-size: 1.1rem;
		text-decoration: underline;
	}
}

/*

::-webkit-scrollbar {
	width: 12px;
	z-index: 999999 !important;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	z-index: 999999 !important;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb {
	background: #888;
	z-index: 999999 !important;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	z-index: 999999 !important;
	background: #555;
}

*/

