html {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;

	--dod-blue: #355e93;
	--dod-gray: #333333;
	--hazy-blue: #ebeff5;
	--steel-blue: #c4d5e9;
	--cadet-blue: #728fb4;
	--ocean-blue: #254267;
}

body {
	background: -webkit-linear-gradient(left, #ebebeb, #ebeff5);
	background: linear-gradient(to right, #ebebeb, #ebeff5);
}

table {
	width: 100%;
	table-layout: fixed;
}

tbody {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.527);
	border: 1px solid rgba(255, 255, 255, 0.527);
}

tr {
	width: 100%;
}

th,
td {
	padding: 15px 15px;
	text-align: center;
	font-weight: 530;
	font-size: 18px;
	color: black;
}

.sort-button {
	background-color: transparent;
	border: none;

	padding: 5px 10px;
	margin: 0;
	line-height: 1;
	font-size: 15px;
	color: black;
	cursor: pointer;

	transition: transform 0.05s ease-out;
}

.sort-reverse {
	transform: rotate(180deg);
}

.floating-title {
	position: fixed;
	background-color: var(--hazy-blue);
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
	z-index: 1000;
	font-size: 23px;
	color: var(--ocean-blue);
	margin: 0;
}

.dodcat {
	margin: 10px;
}

.sticky {
	position: sticky;
	top: 75px;
	background-color: var(--steel-blue);
}

.page-select {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}
.page-select button {
	background-color: var(--dod-blue);
	color: white;
	border: none;
	padding: 10px 20px;
	margin: 0 5px;
	cursor: pointer;
}

#root {
    padding-top: 75px; /* Adjust the value based on the height of your header */
}
