/* Green Pages - Index, 2, 4, 6 */
.green-page {
    background-color: green;
    background-image: url("../images/leaf-logo.jpg");
    background-repeat: repeat;
    background-size: 100px; /* Your updated size */
    background-attachment: fixed;
}

/* Yellow Pages - 1, 3, 5 */
.yellow-page {
    background-color: yellow;
    background-image: url("../images/leaf-logo.jpg");
    background-repeat: repeat;
    background-size: 150px;
    background-attachment: fixed;
}

/* Table Styling for Validation */
table {
    border-collapse: collapse;
    margin: 20px auto;
}

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