
table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-collapse: collapse;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #4CAF50;
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    padding: 15px;
    vertical-align: top;
    color: #333;
}

td ul {
    list-style-position: inside;
    margin-left: 10px;
    padding-left: 0;
}

td ul li {
    padding: 5px 0;
    color: #555;
}

/* responsividade*/
@media screen and (max-width: 768px) {
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px;
    }
    
    td ul {
        margin-left: 5px;
    }
}