body {
	font-family: Arial, sans-serif;
	background-color: #121212;
	color: #ffffff;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1 {
	margin-bottom: 20px;
}

form {
	background-color: #333333;
	padding: 30px;
	border-radius: 10px;
	width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: 10px;
	margin-right: 5px;
	margin-left: 5px;
}

label {
	display: block;
	margin-bottom: 5px;
}

input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #666666;
	border-radius: 5px;
	background-color: #444444;
	color: #ffffff;
	margin-top: 5px;
	box-sizing: border-box;
}

textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #666666;
	border-radius: 5px;
	background-color: #444444;
	color: #ffffff;
	margin-top: 5px;
	box-sizing: border-box;
}

select {
	width: 100%;
	padding: 10px;
	border: 1px solid #666666;
	border-radius: 5px;
	background-color: #444444;
	color: #ffffff;
	margin-top: 5px;
	box-sizing: border-box;
}

input[type="password"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #666666;
	border-radius: 5px;
	background-color: #444444;
	color: #ffffff;
	margin-top: 5px;
	box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus {
	outline: none;
	border-color: #ffffff;
}

textarea:focus {
	outline: none;
	border-color: #ffffff;
}


button {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background-color: #007bff;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
	background-color: #0056b3;
}

.error {
	border: 1px solid red !important;
}

.errorMessage {
	margin-top: 5px;
	size: 12px;
	color: red;
}

.sidebyside {
	display: flex;
}

.tab {
	display: none;
}

.tab-link {
	background-color: transparent;
	display: inline-block;
	color: rgb(93, 139, 219);
	width: 30%;
	text-align: start;
}

.meetingTime {
	border: 1px solid #666666;
	border-radius: 5px;
	padding: 10px;
	margin-top: 5px;
	box-sizing: border-box;
}

h1 {
	color: #afa2ff;
}

body {
	margin: 0;
	padding: 0;
}

.logo {
	float: left;
}

#navigation-container {
	width: 1200px;
	margin: 0 auto;
	height: 70px;
}

.navigation-bar {
	background-color: #352d2f;
	height: 70px;
	width: 100%;
	text-align: right;
}
.navigation-bar img {
	height: 50px;
	float: left;
}
.navigation-bar ul {
	padding: 0px;
	margin: 0px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
}

.navigation-bar li {
	list-style-type: none;
	padding: 0px;
	height: 24px;
	margin-top: 4px;
	margin-bottom: 4px;
	display: inline;
}

.navigation-bar li a {
	color: black;
	font-size: 16px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
	line-height: 70px;
	padding: 5px 15px;
	opacity: 0.7;
}

#menu {
	float: right;
}

/* Style for the side navigation bar */
.sidenav {
	height: 100%;
	width: 250px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	padding-top: 20px;
}

/* Style for the side navigation bar */
.sidenav {
	height: 100%;
	width: 250px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
}

/* Style for links inside the navigation bar */
.sidenav a,
.logout-button {
	padding: 10px 15px;
	text-decoration: none;
	font-size: 18px;
	color: #818181;
	display: block;
}

/* Style for links on hover */
.sidenav a:hover,
.logout-button:hover {
	color: #f1f1f1;
}

.logout-button {
	position: absolute;
	bottom: 25px;
	background: none;
	border: none;
	text-align: left;
}

/* Style for the main content */
.main {
	margin-left: 250px; /* Same width as the sidenav */
	padding: 20px;
}

.sidenav a.active {
	background-color: #ddd; /* Example: Light grey background */
	color: black; /* Change the text color if needed */
	/* Add other styles to indicate the active link */
}

.search-container {
	display: flex;
	align-items: center;
	background-color: #333; /* Slightly lighter dark shade for the search box */
	border-radius: 20px;
	padding: 5px 10px;
}

.search-container input[type="text"] {
	background-color: transparent;
	border: none;
	color: white; /* Light text color for contrast */
	outline: none;
	padding: 10px;
	width: 40vw;
}

.search-container button {
	background-color: #007bff; /* Bright color for the button to stand out */
	border: none;
	border-radius: 100px;
	color: white;
	cursor: pointer;
	padding: 10px;
	width: 100px;
	margin-left: 5px;
}

.search-container button:hover {
	background-color: #0056b3; /* Darker shade of button color on hover */
}

.search-container input::placeholder {
	color: #aaa; /* Light placeholder text */
}

.searchResults {
	min-width: 600px;
	align-items: center;
}

.resultCard {
	margin: 20px;
	background-color: #333333;
	padding: 30px;
	border-radius: 10px;
	width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

	h1 {
		font-size: x-large;
		margin: 0px;
	}

	p {
		color: #666666;
		margin: 0px;
	}
}

.notificationCard {
	margin: 20px;
	background-color: #333333;
	padding: 30px;
	border-radius: 10px;
	width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

	h1 {
		font-size: x-large;
		margin: 0px;
	}

	p {
		color: white;
		font-weight: bold;
		margin: 0px;
	}
}


.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #333333;
	margin: 15% auto;
	padding: 30px;
	border-radius: 10px;
	width: 80%;
}

.modal-form {
	background-color: transparent !important;
	padding: 30px !important;
	box-shadow: none;

	margin-left: 15% auto;
	width: 90%;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-right: 12px;
}

.close:hover,
.close:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}

.close-time {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-right: 12px;
}

.close-time:hover,
.close-time:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}

.edit-button {
	display: none;
	max-width: 200px;
	margin-right: 12px;
}

.delete-button {
	background-color: rgb(215, 31, 31) !important;
	display: none;
	max-width: 200px;
	margin-right: 12px;
}

.join-button {
	display: inline-block;
	max-width: 200px;
}

.pagination-button {
	max-width: 200px;
	margin: 24px;
}

.confirm-modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.confirm-modal-content {
	background-color: #333333;
	margin: 15% auto;
	padding: 30px;
	border-radius: 10px;
	width: 80%;
	text-align: center;
}

.btn {
	background-color: #4caf50;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 12px;
	cursor: pointer;
	border-radius: 4px;
}

.yes-btn {
	background-color: #4caf50;
}

.no-btn {
	background-color: #f44336;
}

.message-modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.message-modal-content {
	background-color: #333333;
	margin: 15% auto;
	justify-content: center;
	align-items: center;
	padding: 30px;
	border-radius: 10px;
	width: 80%;
	text-align: center;
}
