/* Table styles */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

.styled-table thead tr {
    background-color: #6f42c1;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #444;
}

.styled-table tbody tr {
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #383838;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #6f42c1;
}

.styled-table tbody tr:hover {
    background-color: #404040;
}

/* Results container */
#results-container {
    margin: 20px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    max-width: 800px;
    color: #fff;
}

#listaConvenienza {
    text-align: left;
    padding: 15px;
    background-color: #444;
    border-radius: 8px;
    margin-top: 15px;
    color: #fff;
}

#listaConvenienza h3 {
    color: #fff;
    border-bottom: 1px solid #6f42c1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#listaConvenienza ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#listaConvenienza li {
    padding: 10px;
    margin: 5px 0;
    background-color: #555;
    border-radius: 5px;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .styled-table {
        font-size: 12px;
    }

    .styled-table th,
    .styled-table td {
        padding: 8px 10px;
    }
}
