/* Center the table in the middle of the page */
body {
    text-align: center;
    font-family: Arial, sans-serif;
}

.form-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center; /* Centering the content horizontally */
}

/* Intro Text Styling */
.intro-text {
    background-color: #f9f9f9; /* Light background for better readability */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.intro-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
}

.intro-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.intro-paragraph.highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff; /* Highlighted text in blue */
    text-align: center;
}

table {
    width: 100%;
    max-width: 6in; /* Set maximum width of table to 6 inches */
    border-collapse: collapse;
    margin-top: 30px;
    margin-left: auto; /* Center the table horizontally */
    margin-right: auto;
    table-layout: fixed; /* Ensure the columns have fixed width */
}

.yealrySummaryTable {
    max-width: 8in; /* Set maximum width of table to 8 inches */
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

th {
    background-color: #f2f2f2;
}

td {
    word-wrap: break-word; /* Ensures text wraps if it's too long */
}

.notification-banner {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.notification {
    padding: 15px;
    background-color: #4CAF50; /* Green for success */
    color: white;
    text-align: center;
    font-size: 16px;
}

.notification .close-btn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.notification .close-btn:hover {
    color: black;
}