
body {
	font-family: "Saira", sans-serif;
	background-color: rgba(255, 255, 255, 0.7); /* Light background */
	color: #000; /* Dark text */
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

/* Custom scrollbar for consistency */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #e2e8f0;
}
::-webkit-scrollbar-thumb {
	background-color: #94a3b8;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #64748b;
}

/* Main container and section styles */
.main-container {
	max-width: 1280px;
	margin: auto;
	padding: .2rem 2rem;
}

.main-head {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #002A77;
}

.message-banner {
	/* background-color: #dbeafe;  */
	color: #000; /* Dark blue text */
	padding: 5px 24px;
	/* border-radius: 0.5rem; */
	font-size: 14px;
	margin-bottom: 0.5rem;
	/* border: 1px solid #002A77; */
}

.tabs-nav {
	display: flex;
	gap: 0.5rem;
	background-color: #e2e8f0;
	padding: 0.5rem;
	border-radius: 0.75rem;
	margin-bottom: 2rem;
	overflow-x: auto;
	white-space: nowrap;
}

/* Updated tabs-nav styles for anchor-based tabs */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    background-color: #ECECEC;
    padding: 0.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    white-space: nowrap;
}

.tabs-nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.tabs-nav li {
    display: inline-block;
    margin: 0;
}

/* Style the anchor tags to look like the old tab buttons */
.tabs-nav a {
    display: inline-block;
    padding: 0.55rem 1.5rem;
    color: hsl(0, 0%, 50%);
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
    outline: none;
    text-transform: uppercase;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
}

.tabs-nav a:hover {
    color: #1e40af;
    text-decoration: none;
}

.tabs-nav a.active {
    color: #000;
    font-weight: 500;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.main-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.filter-section {
	width: 100%;
	background-color: #ffffff;
	padding: .5rem 1.5rem;
	border-radius: 0.75rem;
	/* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 -6px 12px -4px rgba(0, 0, 0, 0.1); */
	height: fit-content;
}

.filter-section h3 {
	font-size: 0.875rem;
	font-weight: 700;
	color: #002A77;
	/* text-transform: uppercase; */
	margin-bottom: 0.75rem;
}

.filter-group {
	margin-bottom: 1.5rem;
}

.filter-input, .filter-select {
	font-family: "Saira", sans-serif;
	width: 100%;
	padding: 0.75rem;
	border: 0px solid #e2e8f0;
	background-color: #f8fafc;
	color: #000;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
	outline: none;
}

.filter-input:focus, .filter-select:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 2px #bfdbfe;
}

.checkbox-label {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	color: #475569;
	margin-bottom: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
	margin-right: 0.75rem;
	border-radius: 0.25rem;
	border-color: #94a3b8;
	color: #1e40af;
	cursor: pointer;
}

.search-button {
	font-family: "Saira", sans-serif;
	width: 100%;
	background-color: #002A77;
	color: #ffffff;
	padding: 0.75rem 1rem;
	border-radius: 50px;
	font-weight: 600;
	transition: background-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
	border: none;
	cursor: pointer;
	outline: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
	background-color: #AE1326;
}

.announcements-list {
	width: 100%;
}

.announcement-card {
	background-color: #ffffff;
	padding: 0.5rem 1.25rem;
	/* border-radius: 0.75rem; */
	/* box-shadow: 0 8px 13px -5px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 -4px 10px -2px rgba(0, 0, 0, 0.1); */
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out;
	margin-bottom: 1rem;
	border-bottom: 2px solid hsl(0, 0%, 80%);
}

/* .announcement-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
} */

.announcement-content {
	flex: 1;
	padding-right: 1.5rem;
}

.announcement-date {
	font-size: 14px;
	color: #000;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

.announcement-title {
	font-weight: 600;
	color: #1f2937;
}

.download-link {
	color: #AA1527; /* Red accent */
	transition: color 150ms ease-in-out;
}

.no-pdf {
	color: #b9b9b9; /* Red accent */
	transition: color 150ms ease-in-out;
}

.download-link:hover {
	color: #b91c1c;
}

.open-link
{
	text-decoration: none;
	color: #002A77;
    font-size: 16px;
}

.open-link:hover
{
	color: #091c58;
}

.tab-content.hidden {
	display: none;
}

.select-custom-arrow {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="color: #64748b;"><polyline points="6 9 12 15 18 9"></polyline></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 12px;
}

.period-label {
	width: 2.5rem; /* Fixed width for consistent alignment */
	font-size: 0.875rem;
	color: #002A77;
}

.period-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-section .filter-group:nth-child(4) .filter-input {
	width: 100%;
}

.poweredby {
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    color: #999999;
    text-align: right;
    padding-right: 8px;
    padding-top: 0px;
    letter-spacing: 2px;
    height: 10px;
    /* border-top: 1px solid #AA1527; */
    padding: 5px 0;
}

.poweredby img {
    height: 10px;
    padding-top: 0px;
}

@media (min-width: 1024px) {
	.main-content {
		flex-direction: row;
	}
	.filter-section {
		width: 25%;
	}
	.announcements-list {
		width: 75%;
	}
}