body {
    background-image: url(images/leaves_green.jpg);
    background-size: cover;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.main-title {
    position: relative; 
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    background-color: rgba(0,19,7,255); 
    padding: 10px 20px; 
    color: white;
    width: 1800px;
    box-shadow: 0 0 10px rgb(111, 112, 110);
    z-index: 10; 
    margin-top: 100px;
}

table {
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

th, td {
    border: 1px solid #ddd;
    padding: 18px;
    text-align: center;
    font-size: 18px;
}

th {
    background-color: #388e3c;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-transform: uppercase;
}

tr:nth-child(even) {
    background-color: #f1f8e9;
}

tr:hover {
    background-color: #c8e6c9;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.logo {
    width: 100px;
    height: auto;
}

td img {
    width: 50px;
    height: auto;
}

