#dyc-chart {
    background-color: #fff;
}
.dyc-chart-bar {
    background-color: #0073aa;
}
.dyc-chart-line {
    border-color: #0073aa;
}
.dyc-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}
.dyc-results .numeric-value {
    font-weight: bold !important; /* Força o negrito */
}
.dyc-results p {
    font-size: 16px;
}
.total-weight-row td {
    padding: 10px;
    font-weight: bold;
}

/* Estilo para a tabela */
#dyc-stocks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
#dyc-stocks-table th,
#dyc-stocks-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
#dyc-stocks-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}
#dyc-stocks-table .dyc-label {
    display: none; /* Oculta labels por padrão */
}

/* Estilo responsivo para dispositivos móveis */
@media (max-width: 768px) {
    #dyc-stocks-table thead {
        display: none; /* Oculta o cabeçalho em dispositivos móveis */
    }
    #dyc-stocks-table tbody tr {
        display: block;
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
    }
    #dyc-stocks-table tbody td {
        display: flex;
        /*justify-content: space-between;*/
        align-items: center;
        text-align: left;
        border: none;
        padding: 5px 10px;
    }
    #dyc-stocks-table tbody td:before {
        content: attr(data-label);
        font-weight: bold;
        margin-right: 10px;
    }
    #dyc-stocks-table .dyc-label {
        display: inline-block; /* Mostra labels em dispositivos móveis */
        font-weight: bold;
        margin-right: 10px;
    }
    #dyc-stocks-table input {
        /*max-width: 80px;*/
        font-size: 14px;
    }
    .total-weight-row {
        display: block;
        text-align: center;
    }
    .total-weight-row td {
        display: block;
        padding: 10px;
    }
}