#logo {
	padding: 20px;
}

#logo h4 {
	display: block;
	color: #396ca1;
	vertical-align: bottom;
	text-transform: uppercase;
	font-size: 200%;
	float: right;
}

.btn-primary {
    background-color: #396ca1;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #AAC5E0;
	color: #000;
}

#mainmenu a {
	margin-bottom: 5px;
}

body {
	padding:15px;
}

.small p {
	font-size: 70%;
}

.container {
	width: 100%;
}

h4.lined {
	font-weight: bold;
	border-bottom: 1px solid #000;
}

td {
    vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: #F4F4F5;
  font-weight: bold;
}

.sticky-row {
  position: -webkit-sticky; /* Required for Safari compatibility */
  position: sticky;
  top: 0;                   /* Threshold: Sticks when it hits the top */
  background-color: white;  /* Optional: Prevents overlapping text from showing through */
  z-index: 100;             /* Optional: Ensures it stays on top of other content */
}

/* Styles applied when the viewport width is 768px or less */
@media screen and (max-width: 768px) {
    body {
        padding-left: 20px; /* New padding for small screens */
}