body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f1;
    color: #1b4332;
    margin: 0;
    /* This adds the popular plants in the background */
    background-image: url('https://images.unsplash.com/photo-1614594975525-e45190c55d0b?q=80&w=1920&auto=format&fit=crop'); 
    background-size: cover;
    background-attachment: fixed;
}

.background-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Makes the text readable over the images */
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

th {
    background-color: #2d6a4f;
    color: white;
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid #d8f3dc;
}
