/* style.css - Outdated Government Website Theme */

/* General Body and Text Styling */
body {
    font-family: 'Times New Roman', Times, serif; /* Classic, somewhat generic font */
    background-color: #F0F0F0; /* Light gray background, common in older sites */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Links */
a {
    color: #000080; /* Dark blue, a classic hyperlink color */
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    color: #800000; /* Dark red/maroon on hover for contrast */
}

/* Buttons for Login/Actions */
.gov-button {
    background-color: #CCCCCC; /* Light gray button */
    border: 1px solid #666666; /* Defined border */
    color: #333;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9em;
    /* Blocky look */
}

.gov-button:hover {
    background-color: #E0E0E0;
    border-color: #333333;
}

/* --- HEADER STYLES --- */

.gov-header {
    background-color: #FFFFFF; /* White or light color for the header */
    border-bottom: 3px solid #003366; /* Deep government blue separator */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-banner {
    padding: 10px 20px;
    background-color: #003366; /* Primary government banner color */
    color: #FFFFFF;
}

.header-logo-link {
    text-decoration: none;
    display: inline-block;
    color: #FFFFFF;
}

.header-logo-text {
    font-family: Arial, sans-serif; /* A slightly different font for the logo/title */
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    display: block;
}

/* Navigation Menu */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #EEEEEE; /* Secondary navigation bar color */
    border-top: 1px solid #CCCCCC;
}

.header-nav-links, .header-user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-nav-links a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    font-weight: bold;
    border-right: 1px solid #CCC; /* Vertical separators for links */
}

.header-nav-links a:hover {
    background-color: #DDDDDD;
    color: #000000;
}

/* User Dropdown Styling */
.header-style-dropdown {
    position: relative;
    display: inline-block;
}

.header-style-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    background-color: transparent;
    border: none;
}

.header-style-dropdown-btn:hover {
    background-color: #DDDDDD;
}

.header-style-pfp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #003366; /* Simple border for PFP */
}

.header-style-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #FFFFFF;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid #003366;
}

.header-style-dropdown:hover .header-style-dropdown-content {
    display: block;
}

.header-style-dropdown-content a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px dotted #CCC; /* Dotted line separator is a classic touch */
}

.header-style-dropdown-content a:last-child {
    border-bottom: none;
}

.header-style-dropdown-content a:hover {
    background-color: #F0F0F0;
    color: #000;
}

.header-style-dropdown-header {
    padding: 10px 16px;
    background-color: #DDEEFF; /* Light blue background for header */
    font-weight: bold;
    color: #003366;
    border-bottom: 1px solid #003366;
}

.header-style-dropdown-header p {
    font-size: 0.8em;
    color: #666;
    margin: 0;
    font-weight: normal;
}

.header-style-dropdown-divider {
    height: 1px;
    background-color: #CCCCCC;
    margin: 5px 0;
}

/* Main Content Area */
.page-content {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #AAAAAA; /* Give content a defined, blocky box */
}