/*Navigation*/
.Horizontal-row{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: left;
	width: 100%;
	height: 40px;
	text-align: center;
	border-block: 2px solid red;
	margin: 0;
}
.link-container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
}
.link-container a{
	font-size: 24px;
	margin: 25px;
	color: black;
}
/*Seconder Meeting Schedule P1*/
.Alink-container{
	display: none;
	justify-content: center;
	align-items: center;
	height: 40px;
}
.Alink-container a{
	font-size: 24px;
	color: black;
}
select,
::picker(select){
	appearance:base-select;
}
select{
	width: 125px;
	margin: 5px;
	background-color: white;
}
selectedcontent,
option{
	display: flex;
	gap: 0.5rem;
	align-items: 0.25rem;
}
.Selection{
	font-size: 18px;
	color: black;
}
option::checkmark{
	display: none;
}
option:checked{
	background: red;
}
/*Primary Meeting Schedule*/
.BottomL{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-content: center;
	width: 25%;
	background-color: black;
}
.BottomL1 p{
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	padding: 10px;
	border-left: 1px solid red;
	border-top: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 2px solid black;
	margin: 30px 30px 0;
	background-color: gray;
	color: black;
}
.BottomL2 p{
	text-align: left;
	font-size: 18px;
	padding: 10px;
	border-left: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 1px solid red;
	margin: 0 30px;
	background-color: gray;
	color: black;
}
.BottomL3 p{
	text-align: center;
	font-size: 18px;
	padding: 10px;
	border: 1px solid red;
	margin: 30px;
	background-color: gray;
	color: black;
}
.link{
	width: 400%;
	font-size: 18px;
	margin-left: 2px;
	color: black;
}
.BottomR{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: center;
	min-width: 0;
	width: 75%;
	height: 1350px;
}
/*Calander*/
.calendar{
	background: white;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid gray;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	width: 320px;
	Margin-top: 5px;
}
.calendar header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.calendar header button {
	background: #007BFF;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 4px;
}
.calendar table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}
.calendar th {
	background: #007BFF;
	color: white;
	padding: 5px;
}
.calendar td {
	text-align: center;
	padding: 8px;
	cursor: pointer;
}
.calendar td.event-day {
	background: #ffeb3b;
	border-radius: 50%;
}
.calendar td a {
	text-decoration: none;
	color: black;
	display: block;
}
/*Event Flyer*/
.Events img{
	display: flex;
	width: 95%;
	margin-top: 5px;
	margin-left: 25px;
}
/*Seconder Meeting Schedule P2*/
.Bottom{
	display: none;
	flex-direction: column;
}
@media (max-width: 1147px) {
	.BottomL{
		width: 25%;
	}
	.BottomR{
		width: 75%;
	}
}
@media (max-width: 840px) {
	.link-container a{
		display: none;
	}
	.Alink-container{
		display: flex;
	}
	.BottomL{
		display: none;
	}
	.BottomR{
		display: none;
	}
	.Bottom{
		display: flex;
	}
}
@media (max-width: 420px) {
}
