/* Theme Pallet */
:root {
	--text: #000000;
	--background: #ffffff;
	--primary: #003366;
	--secondary: #00A3E0;
	--accent: #D9EAF7;
}

/* Main Content Styles */
.main-wrapper {
	padding: 0;
	background-color: #f8f8f8;
}

.sitemap-header {
    font-size: 15px;
    color: var(--text);
    margin: 0;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0;
	padding-left: 3rem;
	text-align: left;
	width: calc(100% - 4rem);
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.sitemap-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
}

.main-sitemap-wrapper, .info-sitemap-wrapper {
    max-width: auto;
    background-color: var(--background);
    border-radius: 10px;
	border-color: blue;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	align-items: flex-start;
}

.info-sitemap-header {
	font-size: 20px;
	margin-top: 1rem;
	padding-left: 1rem;
}

.left-sitemap-container, .center-sitemap-container, .right-sitemap-container {
    width: 30%;
    padding: 1rem;
	box-sizing: border-box;
}

.bottom-sitemap-container {
    width: 100%;
    padding: 1rem;
	box-sizing: border-box;
}

/* Sitemap Section Styling */
.sitemap-section {
    margin-bottom: 2rem;
}

.sitemap-section h3 {
    font-size: 13px;
    color: var(--text);
    padding-bottom: 0.5rem;
    text-align: left;
}


.sitemap-section ul {
    list-style-type: none;
    padding-left: 0;
}

.sitemap-section li {
	font-size: 11px;
    margin-bottom: 0.5rem;
}

.sitemap-section a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease-in-out;
}

.sitemap-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.retired-note-seperator {
    margin-left: 0.2rem;
    color: #ccc;
}

.retired-note {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-left: 0.2rem;
}

/* Add a line separator between .sitemap-header and sitemap-container */
.sitemap-header::after {
	content: "";
	display: block;
	height: 1px;
	background-color: #D3D3D3;
	margin-top: 5px;
	width: 100%;
}

/* Add a line separator between .main-sitemap-wrapper and .info-sitemap-wrapper */
.main-sitemap-wrapper::after {
	content: "";
	display: block;
	height: 1px;
	background-color: #D3D3D3;
	margin-top: 5px;
	width: 100%;
}

/* Media Responsiveness */
@media (max-width: 768px) {
    .left-sitemap-container, 
    .center-sitemap-container, 
    .right-sitemap-container {
        width: 100%;
    }

    .sitemap-container {
        gap: 1rem;
    }
	
	.retired-note-seperator {
		display: none;
	}
	
	.retired-note {
		margin-left: 0;
		display: block;
	}
}






