.top-div {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: auto;
}
nav {
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 40px;
	background-color: #0084c6;
	/*border: 0px solid black;*/
}
.nav-center{
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: center;
	align-items: center;
	width: 650px;
	margin: auto;
	height: 40px;
	background-color: #0084c6;
}
.content {
	/*height: 100vh;*/ 
	height: calc(100vh - 40px); 
	width: 100vw; 
	/*background-color: yellow;*/
	background-image: url('image2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
.banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	margin: 5% 0 0 0;
	background-color: rgba(0, 0, 0, 0.6);
}
a {
	text-decoration-line: none;
	/*color: #0077cc;*/
	/*color: #0066aa;*/
	color: white;
	&:hover {
      text-decoration-line: underline;
      text-decoration-color: white;
      text-decoration-style: solid;
      text-decoration-thickness: 1px;
    }
}
input {
	border: 1px solid #8899aa;
	border-radius: 6px;
	font-size: 16px;
	background-color: white;
	color: black;
}
textarea {
	font-size: 14px;
	border: 1px solid #8899aa;
	border-radius: 6px;
	background-color: white;
	color: black;
}
/*
th {
	border: 2px solid black;
	padding: 10px;
}
td {
	border: 2px solid black;
	padding: 5px;
}
*/
button {
	background-color: #0084c6;
	color: white;
	font-size: 16px;
	font-weight: 500;
	border-radius: 8px;
	border-width: 0;
	padding: 5px 15px;
	&:hover {
		background-color: #0070b6;
	}
}
.table-container {
    overflow: auto;
    height: calc(100vh - 350px); 
    margin: 0 20px 0 20px;
   /* background-color: yellow;*/
    width: 99%;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%; /* Full width of the container */
    padding: 0 5px;
   /* border: 1px solid black; */
}
th {
    position: sticky; /* Makes the header sticky */
    top: 0; /* Sticks the header to the top */
    /*background-color: #d4d7da; */ /* Background color for visibility */
    /*background-color: #d6d8da;*/
   /* background-color: #dcdedf; */
    background-color: #0077bb;
    color: white;
    z-index: 2; /* Ensures the header is above other content */
    height: 50px;
    /*border: 0px solid;*/
    /*border-top: 1px solid black;*/
}
td {
    padding: 8px; /* Padding for table cells */
    border: 1px solid black;
    background-color: #fff;
}
@media (max-width: 1700px) {
    table {
       font-size: 16px;
 	}
 	td {
 		padding: 4px;
 	}
}
@media (max-width: 1500px) {
    table {
       font-size: 14px;
 	}
 	td {
 		padding: 4px;
 	}
}
@media (max-width: 1200px) {
    table {
       font-size: 12px;
 	}
 	td {
 		padding: 2px;
 	}
}
@media (max-width: 764px) {
    table {
       font-size: 12px;
 	}
 	td {
 		padding: 2px;
 	}
 	.nav-div {
 		font-size: 12px;
 	}
}
