body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace 'fd2022.jpg' with any image you prefer */
    background: url('fd2022.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1; /* Change this (0.1 to 0.3) to adjust transparency */
    z-index: -1; /* Places it behind everything */
}

/* Keeps the main content area white and readable */
.container {
    background: rgba(255, 255, 255, 0.85); 
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 3px solid #0056b3;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    color: #0056b3;
}

.banner {
    background: #eee;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

.banner p {
    margin: 0;
    color: red;
    font-size: 1.4rem;
}

.main-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

h2,
h3 {
    color: #0056b3;
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}

.repeater-table {
    width: auto; /* Shrinks table to fit content */
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.repeater-table th {
    text-align: left;
    padding: 8px 20px 8px 0;
    border-bottom: 2px solid #0056b3;
    color: #0056b3;
}

.repeater-table td {
    padding: 6px 20px 6px 0; /* Reduced vertical spacing */
    border-bottom: 1px solid #eee;
}

.repeater-table tr:last-child td {
    border-bottom: none;
}