body {
    font-family: Arial;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
    text-align: center;
}

h2 {
    font-size: 20px;
    margin-bottom: 1px;
    text-align: center;
}

body .FrontPage {
    text-align: center;
    margin: 20px;
    background-color: #4369e0;
    color: white !important;
    padding: 10px 20px;
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: small;
}

#wrapper {
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px 0;
    font-size: 14px; /* Reduced font size */
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px; /* Reduced padding */
    text-align: center;
}

th {
    background-color: #f4f4f4;
}

.odd {
    background-color: #f9f9f9;
}

.even {
    background-color: #fff;
}

/* Styles for specific issue types */
.current-effective-date {
    background-color: #4caf50; /* Brighter green for current issues */
    color: white !important; /* Ensure text is readable */
}

.next-issue-date {
    background-color: #ff4d4d; /* Brighter red for next issues */
    color: white !important; /* Ensure text is readable */
}

.expired-issue-date {
    background-color: #f4f4f4;
    
}

.fixTableHead {
    overflow-y: auto;
    max-height: 300px; /* Adjust height as needed */
    position: relative;
}

.fixTableHead table {
    border-collapse: collapse;
    width: 100%;
}

.fixTableHead thead th {
    position: sticky;
    top: 0;
    background-color: #f4f4f4; /* Optional: background color for header */
}

    
