body {
    background: linear-gradient(to bottom, #333 0%, #333 40%, #006400 80%, #006400 100%);
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

input, button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: #000;
    background-color: #8FBC8F;
    box-sizing: border-box; /* new line */
}


button {
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

table th {
    background-color: #8FBC8F;
    color: #000;
}

table tr:nth-child(odd) {
    background-color: #555;
}

.tip-jar {
    color: #8FBC8F;
    font-size: 18px;
    margin-top: 20px;
}

.links-section a {
    display: block;
    color: #8FBC8F;
    margin: 10px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}


.links-section a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .links-section a {
        display: block;
        margin: 10px 0;
    }
}

