/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #FFFFFF; /* White text for dark theme */
    background-color: #000000; /* Black background */
}

/* Header and Navigation */
.header {
    background-color: #003366;
    padding: 1rem;
}

.header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.header nav ul li a {
    color: #e8f4ea;
    text-decoration: none;
    font-weight: 600;
}

.header nav ul li a:hover,
.header nav ul li a.active {
    color: #fff;
    border-bottom: 2px solid #02cc78;
}

/* Main Content */
.container {
    background-color: #1a1a1a; /* Dark gray */
    color: #FFFFFF; /* White text */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Summary Box */
.summary-box {
    background-color: #2a2a2a; /* Darker gray */
    border-left: 4px solid #02cc78;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    color: #FFFFFF;
    text-align: center;
}

.summary-box p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Tabs */
.tab-container {
    display: flex;
    border-bottom: 1px solid #444; /* Darker border */
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    color: #FFFFFF;
    white-space: nowrap;
}

.tab-button.active {
    border-bottom: 3px solid #02cf7a;
    font-weight: bold;
    color: #02cc78;
}

.tab-button:hover {
    background-color: #333; /* Darker hover */
}

/* Disability Containers */
.disability-container {
    display: grid;
    gap: 1rem;
}

.disability-container-item {
    background-color: #2a2a2a; /* Darker gray */
    border: 1px solid #444; /* Subtle border */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    color: #FFFFFF;
}

.disability-container-item:hover {
    transform: translateY(-5px); /* Lift on hover */
}

.disability-container-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #02cc78; /* Green accent */
}

.disability-container-item p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.disability-container-item p strong {
    color: #02cc78; /* Bold labels green */
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    color: #FFFFFF;
    background-color: #1a1a1a; /* Dark table bg */
}

.data-table th {
    background-color: #333; /* Dark header */
    font-weight: bold;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    border: 1px solid #444;
}

.data-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #444;
}

.data-table tr:nth-child(even) {
    background-color: #2a2a2a; /* Zebra dark */
}

.data-table tr:nth-child(odd) {
    background-color: #1a1a1a; /* Zebra darker */
}

.data-table tr:hover {
    background-color: #444; /* Hover highlight */
}

/* Accessibility Enhancements */
a:focus,
button:focus {
    outline: 2px solid #02cc78;
    outline-offset: 2px;
}

.apply-banner {
    background-color: #2a2a2a; /* Dark green bg */
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    margin-top: 1rem;
    border: 1px solid #02cc78;
}

.apply-banner a {
    color: #02cc78; /* Green text */
    text-decoration: none;
    font-weight: bold;
}

.apply-banner a:hover {
    text-decoration: underline;
}

.effective-date,
.monthly-payment {
    color: #FFFFFF;
}