.meu-widget-botoes {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.botao-dashboard {
    display: inline-block;
    background-color: #007bff; /* Cor primária do WordPress */
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.botao-dashboard:hover {
    background-color: #0056b3;
}

/* Remove caixas vazias do dashboard */
#dashboard-widgets .empty-container,
#dashboard-widgets .postbox-container:empty {
    display: none;
}

/* Ajusta largura das colunas quando houver conteúdo */
#dashboard-widgets .postbox-container {
    width: 49% !important;
    margin-right: 2%;
}

#dashboard-widgets .postbox-container:last-child {
    margin-right: 0;
}

/* Garante que widgets com conteúdo fiquem visíveis */
#dashboard-widgets .postbox:not(:empty) {
    display: block;
}

/* Ajusta cor e peso quando loja está inativa */
.loja_inativa {
    font-weight: bold;
}
.loja_inativa span {
    color: rgb(255, 0, 0); 
}
