.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table td, .table th {
    padding: 12px 15px;
    border: 2px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.table th {
    background-color: black;
    color: #ffffff;
}

.table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.table-info {
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    width: 100%;
    position: static;
    top: 0; /* Fixa o aviso no topo */
    z-index: 100; /* Garante que o aviso fique acima da tabela */
    box-sizing: border-box;
}

.info-icon {
    font-size: 20px;
    margin-right: 5px;
    color: #E3010F;
}

@media (max-width: 900px){
    .table {
        display: table;
    }

    .table td {
        text-align: center;
    }

    .table td img {
        width: 100px;
        height: auto;
    }

    .table-info {
        font-size: 12px;
        justify-content: flex-start;
        padding: 10px 15px;
    }

    .info-icon {
        font-size: 18px;
    }
}